aboutsummaryrefslogtreecommitdiff
path: root/main_background.js
diff options
context:
space:
mode:
authorRuben Rodriguez <ruben@fsf.org>2018-04-27 17:21:11 -0400
committerRuben Rodriguez <ruben@fsf.org>2018-04-27 17:21:11 -0400
commit181e5194a418d0cf9f876710f559e6dc80590989 (patch)
tree306ea611bad480bd215abd1232bf511d94e0e0d3 /main_background.js
parentef338f7693fe5339d833679aed1c7e7e399b67f2 (diff)
Fixes to the CSS plus showing links instead of hashes
Diffstat (limited to 'main_background.js')
-rw-r--r--main_background.js19
1 files changed, 10 insertions, 9 deletions
diff --git a/main_background.js b/main_background.js
index b159ff1..8d6052d 100644
--- a/main_background.js
+++ b/main_background.js
@@ -1,7 +1,8 @@
/**
* GNU LibreJS - A browser add-on to block nonfree nontrivial JavaScript.
* *
-* Copyright (C) 2017 Nathan Nichols
+* Copyright (C) 2017, 2018 Nathan Nichols
+* Copyright (C) 2018 Ruben Rodriguez <ruben@gnu.org>
*
* This file is part of GNU LibreJS.
*
@@ -814,11 +815,11 @@ function evaluate(script,name){
if(flag){
dbg_print("%c pass","color:green;");
} else{
- return [flag,reason+"<br>"];
+ return [flag,reason];
}
var final = full_evaluate(temp);
- final[1] = final[1] + "<br>";
+// final[1] = final[1] + "<br>";
return final;
}
@@ -937,9 +938,9 @@ function get_script(response,url,tabid,wl,index=-1){
if(wl == true){
// Accept without reading script, it was explicitly whitelisted
if(typeof(unused_data[tabid]["accepted"].push) != "function"){
- unused_data[tabid]["accepted"] = [[scriptname,"Page is whitelisted in preferences"]];
+ unused_data[tabid]["accepted"] = [[url,"Page is whitelisted in preferences"]];
} else{
- unused_data[tabid]["accepted"].push([scriptname,"Page is whitelisted in preferences"]);
+ unused_data[tabid]["accepted"].push([url,"Page is whitelisted in preferences"]);
}
resolve("\n/*\n LibreJS: Script whitelisted by user (From a URL found in comma seperated whitelist)\n*/\n"+response);
if(index != -1){
@@ -967,7 +968,7 @@ function get_script(response,url,tabid,wl,index=-1){
dbg_print("amt. blocked on page:"+badge_str);
if(badge_str > 0 || verdict == false){
webex.browserAction.setBadgeText({
- text: "GRR",
+ text: "!",
tabId: tabid
});
webex.browserAction.setBadgeBackgroundColor({
@@ -976,7 +977,7 @@ function get_script(response,url,tabid,wl,index=-1){
});
} else{
webex.browserAction.setBadgeText({
- text: "OK",
+ text: "✓",
tabId: tabid
});
webex.browserAction.setBadgeBackgroundColor({
@@ -986,9 +987,9 @@ function get_script(response,url,tabid,wl,index=-1){
}
if(verdict == true){
- popup_res = add_popup_entry(tabid,src_hash,{"url":domain,"accepted":[scriptname+" ("+src_hash+")",edited[2]]});
+ popup_res = add_popup_entry(tabid,src_hash,{"url":domain,"accepted":[url,edited[2]]});
} else{
- popup_res = add_popup_entry(tabid,src_hash,{"url":domain,"blocked":[scriptname+" ("+src_hash+")",edited[2]]});
+ popup_res = add_popup_entry(tabid,src_hash,{"url":domain,"blocked":[url,edited[2]]});
}
popup_res.then(function(list_verdict){