|
|
@ -53,6 +53,7 @@ chrome.privacy.network.networkPredictionEnabled.set({
|
|
|
|
// Tell Chromium to allow all javascript: µMatrix will control whether
|
|
|
|
// Tell Chromium to allow all javascript: µMatrix will control whether
|
|
|
|
// javascript execute through `Content-Policy-Directive` and webRequest.
|
|
|
|
// javascript execute through `Content-Policy-Directive` and webRequest.
|
|
|
|
// https://github.com/gorhill/httpswitchboard/issues/74
|
|
|
|
// https://github.com/gorhill/httpswitchboard/issues/74
|
|
|
|
|
|
|
|
// Firefox WebExtensions does not support contentSettings API, yet.
|
|
|
|
if ( chrome.contentSettings instanceof Object ) {
|
|
|
|
if ( chrome.contentSettings instanceof Object ) {
|
|
|
|
chrome.contentSettings.javascript.set({
|
|
|
|
chrome.contentSettings.javascript.set({
|
|
|
|
primaryPattern: 'https://*/*',
|
|
|
|
primaryPattern: 'https://*/*',
|
|
|
@ -83,7 +84,10 @@ vAPI.app.start = function() {
|
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
vAPI.app.stop = function() {
|
|
|
|
vAPI.app.stop = function() {
|
|
|
|
|
|
|
|
// Firefox WebExtensions does not support contentSettings API, yet.
|
|
|
|
|
|
|
|
if ( chrome.contentSettings instanceof Object ) {
|
|
|
|
chrome.contentSettings.javascript.clear({});
|
|
|
|
chrome.contentSettings.javascript.clear({});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// rhill 2013-12-07:
|
|
|
|
// rhill 2013-12-07:
|
|
|
|
// Tell Chromium to allow all javascript: µMatrix will control whether
|
|
|
|
// Tell Chromium to allow all javascript: µMatrix will control whether
|
|
|
|