mirror of https://github.com/gorhill/uBlock.git
treat behind-the-scene network requests like all others
This commit is contained in:
parent
dd49e0ad7c
commit
0a879a816b
|
@ -1 +1 @@
|
||||||
1.15.19.8
|
1.15.19.100
|
||||||
|
|
|
@ -106,7 +106,6 @@ var µBlock = (function() { // jshint ignore:line
|
||||||
netWhitelistModifyTime: 0,
|
netWhitelistModifyTime: 0,
|
||||||
netWhitelistDefault: [
|
netWhitelistDefault: [
|
||||||
'about-scheme',
|
'about-scheme',
|
||||||
'behind-the-scene',
|
|
||||||
'chrome-extension-scheme',
|
'chrome-extension-scheme',
|
||||||
'chrome-scheme',
|
'chrome-scheme',
|
||||||
'moz-extension-scheme',
|
'moz-extension-scheme',
|
||||||
|
|
|
@ -103,9 +103,33 @@ var onPSLReady = function() {
|
||||||
// To bring older versions up to date
|
// To bring older versions up to date
|
||||||
|
|
||||||
var onVersionReady = function(lastVersion) {
|
var onVersionReady = function(lastVersion) {
|
||||||
if ( lastVersion !== vAPI.app.version ) {
|
if ( lastVersion === vAPI.app.version ) { return; }
|
||||||
vAPI.storage.set({ version: vAPI.app.version });
|
|
||||||
|
// From 1.15.19b9 and above, the `behind-the-scene` scope is no longer
|
||||||
|
// whitelisted by default, and network requests from that scope will be
|
||||||
|
// subject to filtering by default.
|
||||||
|
//
|
||||||
|
// Following code is to remove the `behind-the-scene` scope when updating
|
||||||
|
// from a version older than 1.15.19b9.
|
||||||
|
// This will apply only to webext versions of uBO, as the following would
|
||||||
|
// certainly cause too much breakage in Firefox legacy given that uBO can
|
||||||
|
// see ALL network requests.
|
||||||
|
// Remove when everybody is beyond 1.15.19b8.
|
||||||
|
if ( vAPI.firefox === undefined ) {
|
||||||
|
var match = /^(\d+)\.(\d+)\.(\d+)(?:\D(\d+))?/.exec(lastVersion);
|
||||||
|
if ( match !== null ) {
|
||||||
|
var v1 =
|
||||||
|
parseInt(match[1], 10) * 1000 * 1000 * 1000 +
|
||||||
|
parseInt(match[2], 10) * 1000 * 1000 +
|
||||||
|
parseInt(match[3], 10) * 1000 +
|
||||||
|
(match[4] ? parseInt(match[4], 10) : 0);
|
||||||
|
if ( v1 <= 1015019008 ) {
|
||||||
|
µb.toggleNetFilteringSwitch('http://behind-the-scene/', '', true);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
vAPI.storage.set({ version: vAPI.app.version });
|
||||||
};
|
};
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
|
@ -339,8 +339,7 @@ var onBeforeBehindTheSceneRequest = function(details) {
|
||||||
pageStore = µb.pageStoreFromTabId(details.tabId);
|
pageStore = µb.pageStoreFromTabId(details.tabId);
|
||||||
if ( pageStore === null ) { return; }
|
if ( pageStore === null ) { return; }
|
||||||
|
|
||||||
var result = 0,
|
var context = pageStore.createContextFromPage(),
|
||||||
context = pageStore.createContextFromPage(),
|
|
||||||
requestType = details.type,
|
requestType = details.type,
|
||||||
requestURL = details.url;
|
requestURL = details.url;
|
||||||
|
|
||||||
|
@ -368,13 +367,13 @@ var onBeforeBehindTheSceneRequest = function(details) {
|
||||||
// https://github.com/gorhill/uBlock/issues/3150
|
// https://github.com/gorhill/uBlock/issues/3150
|
||||||
// Ability to globally block CSP reports MUST also apply to
|
// Ability to globally block CSP reports MUST also apply to
|
||||||
// behind-the-scene network requests.
|
// behind-the-scene network requests.
|
||||||
if (
|
|
||||||
details.tabId !== vAPI.noTabId ||
|
// 2018-03-30:
|
||||||
µb.userSettings.advancedUserEnabled ||
|
// Filter all behind-the-scene network requests like any other network
|
||||||
requestType === 'csp_report'
|
// requests. Hopefully this will not break stuff as it used to be the
|
||||||
) {
|
// case.
|
||||||
result = pageStore.filterRequest(context);
|
|
||||||
}
|
var result = pageStore.filterRequest(context);
|
||||||
|
|
||||||
pageStore.journalAddRequest(context.requestHostname, result);
|
pageStore.journalAddRequest(context.requestHostname, result);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue