aboutsummaryrefslogtreecommitdiffstats
path: root/background_page.html
diff options
context:
space:
mode:
Diffstat (limited to 'background_page.html')
-rw-r--r--background_page.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/background_page.html b/background_page.html
index 881024c3..b80f49b4 100644
--- a/background_page.html
+++ b/background_page.html
@@ -113,6 +113,12 @@
return { isEnabledForUrl: isEnabled };
}
+ function addExcludedUrl(url) {
+ var excludedUrls = settings.get("excludedUrls");
+ excludedUrls += "\n" + url;
+ settings.set("excludedUrls", excludedUrls);
+ }
+
function saveHelpDialogSettings(request) {
settings.set("helpDialog_showAdvancedCommands", request.showAdvancedCommands);
}