diff options
author | Wojtek Kosior <koszko@koszko.org> | 2021-07-12 14:22:41 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2021-07-12 14:22:41 +0200 |
commit | 1789f17466847d731d0bafa67b6d76526ca32b1d (patch) | |
tree | 43b2e55d4a4ceee1e4ac428dcaa26124f7bc36f9 /content | |
parent | dcfc78b0d175bee7b3b7e273282078d50bd4ca09 (diff) | |
download | browser-extension-1789f17466847d731d0bafa67b6d76526ca32b1d.tar.gz browser-extension-1789f17466847d731d0bafa67b6d76526ca32b1d.zip |
merge jahoti into master
Diffstat (limited to 'content')
-rw-r--r-- | content/main.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/content/main.js b/content/main.js index 3204a8a..b044c82 100644 --- a/content/main.js +++ b/content/main.js @@ -18,6 +18,7 @@ * IMPORT is_privileged_url * IMPORT sanitize_attributes * IMPORT mozilla_suppress_scripts + * IMPORT browser * IMPORT is_chrome * IMPORT is_mozilla * IMPORT start_activity_info_server @@ -134,9 +135,9 @@ if (!is_privileged_url(document.URL)) { port.onMessage.removeListener(nonce_capturer); handle_page_actions(msg[1], port); }; - + port.onMessage.addListener(nonce_capturer); - + } else if (is_whitelisted()) { /* do not block scripts at all; as a result, there is no need for a green-lighted nonce */ handle_page_actions(null, port); |