From d878db527ce092b97dcb8f8d29d2e9456f50fdb5 Mon Sep 17 00:00:00 2001 From: Nick White Date: Sun, 11 Dec 2011 13:49:02 +0000 Subject: Add options to chromium extension --- chromium/background.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'chromium/background.html') 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+");"}); }); -- cgit v1.2.3