summaryrefslogtreecommitdiff
path: root/chromium/background.html
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/background.html')
-rw-r--r--chromium/background.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/chromium/background.html b/chromium/background.html
index ce0042e..6d0847c 100644
--- a/chromium/background.html
+++ b/chromium/background.html
@@ -7,6 +7,9 @@
chrome.extension.onRequest.addListener(onRequest);
chrome.pageAction.onClicked.addListener(function(tab) {
- chrome.tabs.executeScript(tab.id, {code:"simplyread();"});
+ if (!localStorage.prefs)
+ localStorage.prefs = '{"nostyle":false,"nolinks":false}';
+ var prefs = JSON.parse(localStorage.prefs);
+ chrome.tabs.executeScript(tab.id, {code:"simplyread("+prefs.nostyle+","+prefs.nolinks+");"});
});
</script></head></html>