diff --git a/platform/chromium/vapi-background.js b/platform/chromium/vapi-background.js index 6d9c3e9..ef01a8b 100644 --- a/platform/chromium/vapi-background.js +++ b/platform/chromium/vapi-background.js @@ -53,6 +53,7 @@ chrome.privacy.network.networkPredictionEnabled.set({ // Tell Chromium to allow all javascript: µMatrix will control whether // javascript execute through `Content-Policy-Directive` and webRequest. // https://github.com/gorhill/httpswitchboard/issues/74 +// Firefox WebExtensions does not support contentSettings API, yet. if ( chrome.contentSettings instanceof Object ) { chrome.contentSettings.javascript.set({ primaryPattern: 'https://*/*', @@ -83,7 +84,10 @@ vAPI.app.start = function() { /******************************************************************************/ vAPI.app.stop = function() { - chrome.contentSettings.javascript.clear({}); + // Firefox WebExtensions does not support contentSettings API, yet. + if ( chrome.contentSettings instanceof Object ) { + chrome.contentSettings.javascript.clear({}); + } // rhill 2013-12-07: // Tell Chromium to allow all javascript: µMatrix will control whether diff --git a/platform/webext/manifest.json b/platform/webext/manifest.json index 7c638e4..1687fae 100644 --- a/platform/webext/manifest.json +++ b/platform/webext/manifest.json @@ -46,7 +46,6 @@ }, "permissions": [ "browsingData", - "contentSettings", "cookies", "privacy", "storage",