Index: background.js |
=================================================================== |
--- a/background.js |
+++ b/background.js |
@@ -72,7 +72,6 @@ |
defaultOptionValue("shouldShowIcon", "true"); |
defaultOptionValue("shouldShowBlockElementMenu", "true"); |
- defaultOptionValue("disableInlineTextAds", "false"); |
// If user had older version installed, get rid of old option |
if ("specialCaseYouTube" in localStorage) |
@@ -562,7 +561,7 @@ |
// The page action popup asks us this. |
if(sender.tab) |
{ |
- sendResponse({enabled: !isWhitelisted(sender.tab.url), specialCaseYouTube: localStorage["specialCaseYouTube"] == "true", disableInlineTextAds: localStorage["disableInlineTextAds"] == "true"}); |
+ sendResponse({enabled: !isWhitelisted(sender.tab.url), specialCaseYouTube: localStorage["specialCaseYouTube"] == "true"}); |
Wladimir Palant
2012/11/06 08:06:11
Please get rid of specialCaseYouTube as well here
Felix Dahlke
2012/11/06 08:16:38
Done.
|
return; |
} |
break; |