2014-06-24 00:42:43 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2015-03-07 19:20:18 +01:00
|
|
|
µBlock - a browser extension to block requests.
|
2014-06-24 00:42:43 +02:00
|
|
|
Copyright (C) 2014 Raymond Hill
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see {http://www.gnu.org/licenses/}.
|
|
|
|
|
|
|
|
Home: https://github.com/gorhill/uBlock
|
|
|
|
*/
|
|
|
|
|
2014-11-24 23:20:21 +01:00
|
|
|
/* global µBlock, vAPI */
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// Start isolation from global scope
|
|
|
|
|
|
|
|
µBlock.webRequest = (function() {
|
|
|
|
|
2014-11-24 23:20:21 +01:00
|
|
|
'use strict';
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-03-26 00:28:22 +01:00
|
|
|
var exports = {};
|
|
|
|
|
2015-03-13 14:48:10 +01:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1001
|
|
|
|
// This is to be used as last-resort fallback in case a tab is found to not
|
|
|
|
// be bound while network requests are fired for the tab.
|
|
|
|
|
2015-03-15 18:59:17 +01:00
|
|
|
var mostRecentRootDocURLTimestamp = 0;
|
2015-03-13 14:48:10 +01:00
|
|
|
var mostRecentRootDocURL = '';
|
|
|
|
|
2015-03-26 00:28:22 +01:00
|
|
|
|
|
|
|
var documentWhitelists = Object.create(null);
|
|
|
|
|
2015-03-13 14:48:10 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-07-26 15:55:12 +02:00
|
|
|
// Intercept and filter web requests.
|
2014-07-14 17:24:59 +02:00
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
var onBeforeRequest = function(details) {
|
2015-02-25 20:15:36 +01:00
|
|
|
//console.debug('µBlock.webRequest/onBeforeRequest(): "%s": %o', details.url, details);
|
2015-03-13 15:02:33 +01:00
|
|
|
//console.debug('µBlock.webRequest/onBeforeRequest(): "type=%s, id=%d, parent id=%d, url=%s', details.type, details.frameId, details.parentFrameId, details.url);
|
2014-07-14 17:24:59 +02:00
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
// Special handling for root document.
|
2015-03-13 14:48:10 +01:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1001
|
|
|
|
// This must be executed regardless of whether the request is
|
|
|
|
// behind-the-scene
|
2015-03-21 21:52:35 +01:00
|
|
|
var requestType = details.type;
|
2015-03-13 15:20:33 +01:00
|
|
|
if ( requestType === 'main_frame' ) {
|
2015-03-21 21:52:35 +01:00
|
|
|
return onBeforeRootFrameRequest(details);
|
2014-07-14 17:24:59 +02:00
|
|
|
}
|
|
|
|
|
2015-03-13 14:48:10 +01:00
|
|
|
// Special treatment: behind-the-scene requests
|
2015-03-21 21:52:35 +01:00
|
|
|
var tabId = details.tabId;
|
2015-03-13 14:48:10 +01:00
|
|
|
if ( vAPI.isNoTabId(tabId) ) {
|
|
|
|
return onBeforeBehindTheSceneRequest(details);
|
|
|
|
}
|
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
// Lookup the page store associated with this tab id.
|
2015-03-21 21:52:35 +01:00
|
|
|
var µb = µBlock;
|
|
|
|
var pageStore = µb.pageStoreFromTabId(tabId);
|
2014-07-26 01:29:51 +02:00
|
|
|
if ( !pageStore ) {
|
2015-03-15 18:59:17 +01:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1025
|
|
|
|
// Google Hangout popup opens without a root frame. So for now we will
|
|
|
|
// just discard that best-guess root frame if it is too far in the
|
|
|
|
// future, at which point it ceases to be a "best guess".
|
|
|
|
if ( (Date.now() - mostRecentRootDocURLTimestamp) >= 500 ) {
|
|
|
|
mostRecentRootDocURL = '';
|
|
|
|
}
|
2015-03-13 14:48:10 +01:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1001
|
|
|
|
// Not a behind-the-scene request, yet no page store found for the
|
|
|
|
// tab id: we will thus bind the last-seen root document to the
|
|
|
|
// unbound tab. It's a guess, but better than ending up filtering
|
|
|
|
// nothing at all.
|
2015-03-22 01:30:00 +01:00
|
|
|
if ( mostRecentRootDocURL !== '' ) {
|
|
|
|
vAPI.tabs.onNavigation({ tabId: tabId, frameId: 0, url: mostRecentRootDocURL });
|
|
|
|
pageStore = µb.pageStoreFromTabId(tabId);
|
|
|
|
}
|
|
|
|
// If all else fail at finding a page store, re-categorize the
|
|
|
|
// request as behind-the-scene. At least this ensures that ultimately
|
|
|
|
// the user can still inspect/filter those net requests which were
|
|
|
|
// about to fall through the cracks.
|
|
|
|
// Example: Chromium + case #12 at
|
|
|
|
// http://raymondhill.net/ublock/popup.html
|
2015-03-13 14:48:10 +01:00
|
|
|
if ( !pageStore ) {
|
2015-03-22 01:30:00 +01:00
|
|
|
return onBeforeBehindTheSceneRequest(details);
|
2015-03-13 14:48:10 +01:00
|
|
|
}
|
2014-07-14 20:40:40 +02:00
|
|
|
}
|
2014-07-15 13:38:34 +02:00
|
|
|
|
2014-07-30 07:05:35 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/114
|
|
|
|
var requestContext = pageStore;
|
2014-08-06 01:35:32 +02:00
|
|
|
var frameStore;
|
2015-02-25 20:15:36 +01:00
|
|
|
// https://github.com/gorhill/uBlock/issues/886
|
|
|
|
// For requests of type `sub_frame`, the parent frame id must be used
|
|
|
|
// to lookup the proper context:
|
|
|
|
// > If the document of a (sub-)frame is loaded (type is main_frame or
|
|
|
|
// > sub_frame), frameId indicates the ID of this frame, not the ID of
|
|
|
|
// > the outer frame.
|
|
|
|
// > (ref: https://developer.chrome.com/extensions/webRequest)
|
2015-03-21 21:52:35 +01:00
|
|
|
var isFrame = requestType === 'sub_frame';
|
2015-02-25 20:15:36 +01:00
|
|
|
var frameId = isFrame ? details.parentFrameId : details.frameId;
|
2014-08-06 01:35:32 +02:00
|
|
|
if ( frameId > 0 ) {
|
|
|
|
if ( frameStore = pageStore.getFrame(frameId) ) {
|
|
|
|
requestContext = frameStore;
|
|
|
|
}
|
|
|
|
}
|
2014-07-30 07:05:35 +02:00
|
|
|
|
2014-12-28 16:07:43 +01:00
|
|
|
// Setup context and evaluate
|
2015-03-21 21:52:35 +01:00
|
|
|
var requestURL = details.url;
|
2014-12-28 16:07:43 +01:00
|
|
|
requestContext.requestURL = requestURL;
|
2015-01-21 01:39:13 +01:00
|
|
|
requestContext.requestHostname = details.hostname;
|
2014-12-28 16:07:43 +01:00
|
|
|
requestContext.requestType = requestType;
|
|
|
|
|
|
|
|
var result = pageStore.filterRequest(requestContext);
|
2014-07-14 17:24:59 +02:00
|
|
|
|
2015-01-16 18:15:12 +01:00
|
|
|
// Possible outcomes: blocked, allowed-passthru, allowed-mirror
|
2015-01-06 14:01:15 +01:00
|
|
|
|
2014-09-14 22:20:40 +02:00
|
|
|
// Not blocked
|
2015-01-16 18:15:12 +01:00
|
|
|
if ( µb.isAllowResult(result) ) {
|
2015-01-24 18:06:22 +01:00
|
|
|
//console.debug('traffic.js > onBeforeRequest(): ALLOW "%s" (%o) because "%s"', details.url, details, result);
|
2014-07-30 07:05:35 +02:00
|
|
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/114
|
2015-03-02 16:41:51 +01:00
|
|
|
frameId = details.frameId;
|
|
|
|
if ( frameId > 0 ) {
|
|
|
|
if ( isFrame ) {
|
|
|
|
pageStore.setFrame(frameId, requestURL);
|
|
|
|
} else if ( pageStore.getFrame(frameId) === null ) {
|
|
|
|
pageStore.setFrame(frameId, requestURL);
|
|
|
|
}
|
2014-08-06 01:35:32 +02:00
|
|
|
}
|
2014-09-14 22:20:40 +02:00
|
|
|
|
2014-11-29 21:26:01 +01:00
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=387198
|
|
|
|
// Not all redirects will succeed, until bug above is fixed.
|
2015-01-19 01:17:36 +01:00
|
|
|
// https://github.com/gorhill/uBlock/issues/540
|
|
|
|
// Disabling local mirroring for the time being
|
|
|
|
//var redirectURL = pageStore.toMirrorURL(requestURL);
|
|
|
|
//if ( redirectURL !== '' ) {
|
2015-01-24 18:06:22 +01:00
|
|
|
// pageStore.logRequest(requestContext, 'ma:');
|
|
|
|
//console.debug('traffic.js > "%s" redirected to "%s..."', requestURL.slice(0, 50), redirectURL.slice(0, 50));
|
2015-01-19 01:17:36 +01:00
|
|
|
// return { redirectUrl: redirectURL };
|
|
|
|
//}
|
2014-09-30 21:55:18 +02:00
|
|
|
|
2015-01-24 18:06:22 +01:00
|
|
|
pageStore.logRequest(requestContext, result);
|
2015-01-16 18:15:12 +01:00
|
|
|
|
2014-07-14 17:24:59 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
// Blocked
|
2015-03-15 19:04:07 +01:00
|
|
|
//console.debug('traffic.js > onBeforeRequest(): BLOCK "%s" (%o) because "%s"', details.url, details, result);
|
2014-12-23 00:38:18 +01:00
|
|
|
|
2015-01-24 18:06:22 +01:00
|
|
|
pageStore.logRequest(requestContext, result);
|
2015-01-16 18:15:12 +01:00
|
|
|
|
2015-02-28 21:34:50 +01:00
|
|
|
// https://github.com/gorhill/uBlock/issues/905#issuecomment-76543649
|
|
|
|
// No point updating the badge if it's not being displayed.
|
|
|
|
if ( µb.userSettings.showIconBadge ) {
|
|
|
|
µb.updateBadgeAsync(tabId);
|
|
|
|
}
|
2014-07-26 01:29:51 +02:00
|
|
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/18
|
|
|
|
// Do not use redirection, we need to block outright to be sure the request
|
|
|
|
// will not be made. There can be no such guarantee with redirection.
|
2014-07-14 17:24:59 +02:00
|
|
|
|
2015-03-26 00:28:22 +01:00
|
|
|
return { cancel: true };
|
2014-07-14 17:24:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-03-21 21:52:35 +01:00
|
|
|
var onBeforeRootFrameRequest = function(details) {
|
2015-03-26 00:28:22 +01:00
|
|
|
mostRecentRootDocURL = requestURL;
|
|
|
|
mostRecentRootDocURLTimestamp = Date.now();
|
|
|
|
|
2015-03-21 21:52:35 +01:00
|
|
|
// Special handling for root document.
|
|
|
|
// https://github.com/gorhill/uBlock/issues/1001
|
|
|
|
// This must be executed regardless of whether the request is
|
|
|
|
// behind-the-scene
|
2015-03-26 00:28:22 +01:00
|
|
|
var µb = µBlock;
|
2015-03-21 21:52:35 +01:00
|
|
|
var requestURL = details.url;
|
2015-03-26 00:28:22 +01:00
|
|
|
var requestHostname = details.hostname;
|
|
|
|
var requestDomain = µb.URI.domainFromHostname(requestHostname);
|
|
|
|
var context = {
|
|
|
|
rootHostname: requestHostname,
|
|
|
|
rootDomain: requestDomain,
|
|
|
|
pageHostname: requestHostname,
|
|
|
|
pageDomain: requestDomain,
|
|
|
|
requestURL: requestURL,
|
|
|
|
requestHostname: requestHostname,
|
|
|
|
requestType: 'main_frame'
|
|
|
|
};
|
|
|
|
|
|
|
|
var result = '';
|
|
|
|
|
2015-03-27 18:00:55 +01:00
|
|
|
// Permanently unrestricted?
|
|
|
|
if ( result === '' && µb.hnSwitches.evaluateZ('dontBlockDoc', requestHostname) ) {
|
|
|
|
result = 'ua:dontBlockDoc true';
|
|
|
|
}
|
|
|
|
|
2015-03-26 00:28:22 +01:00
|
|
|
// Temporarily whitelisted?
|
|
|
|
var obsolete = documentWhitelists[requestHostname];
|
|
|
|
if ( obsolete !== undefined ) {
|
|
|
|
if ( obsolete > Date.now() ) {
|
2015-03-27 18:00:55 +01:00
|
|
|
if ( result === '' ) {
|
|
|
|
result = 'ta:*' + ' ' + requestHostname + ' doc allow';
|
|
|
|
}
|
2015-03-26 00:28:22 +01:00
|
|
|
} else {
|
|
|
|
delete documentWhitelists[requestHostname];
|
|
|
|
}
|
2015-03-21 21:52:35 +01:00
|
|
|
}
|
2015-03-26 00:28:22 +01:00
|
|
|
|
|
|
|
// Filtering
|
|
|
|
if ( result === '' && µb.getNetFilteringSwitch(requestURL) ) {
|
2015-03-27 18:00:55 +01:00
|
|
|
result = µb.staticNetFilteringEngine.matchString(context);
|
2015-03-26 00:28:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Log
|
|
|
|
var pageStore = µb.bindTabToPageStats(details.tabId, requestURL, 'beforeRequest');
|
|
|
|
if ( pageStore ) {
|
|
|
|
pageStore.logRequest(context, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not blocked
|
|
|
|
if ( µb.isAllowResult(result) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Blocked
|
|
|
|
var query = btoa(JSON.stringify({
|
|
|
|
url: requestURL,
|
2015-03-27 18:00:55 +01:00
|
|
|
why: result
|
2015-03-26 00:28:22 +01:00
|
|
|
}));
|
2015-03-27 18:00:55 +01:00
|
|
|
|
|
|
|
vAPI.tabs.replace(details.tabId, vAPI.getURL('document-blocked.html?details=') + query);
|
|
|
|
|
|
|
|
return { cancel: true };
|
2015-03-21 21:52:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-01-24 18:06:22 +01:00
|
|
|
// Intercept and filter behind-the-scene requests.
|
|
|
|
|
|
|
|
var onBeforeBehindTheSceneRequest = function(details) {
|
|
|
|
//console.debug('traffic.js > onBeforeBehindTheSceneRequest(): "%s": %o', details.url, details);
|
|
|
|
|
|
|
|
var µb = µBlock;
|
|
|
|
var pageStore = µb.pageStoreFromTabId(vAPI.noTabId);
|
|
|
|
if ( !pageStore ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pageStore.requestURL = details.url;
|
|
|
|
pageStore.requestHostname = details.hostname;
|
|
|
|
pageStore.requestType = details.type;
|
|
|
|
|
|
|
|
// Blocking behind-the-scene requests can break a lot of stuff: prevent
|
|
|
|
// browser updates, prevent extension updates, prevent extensions from
|
|
|
|
// working properly, etc.
|
|
|
|
// So we filter if and only if the "advanced user" mode is selected
|
|
|
|
var result = '';
|
|
|
|
if ( µb.userSettings.advancedUserEnabled ) {
|
|
|
|
result = pageStore.filterRequestNoCache(pageStore);
|
|
|
|
}
|
|
|
|
|
|
|
|
pageStore.logRequest(pageStore, result);
|
|
|
|
|
|
|
|
// Not blocked
|
|
|
|
if ( µb.isAllowResult(result) ) {
|
|
|
|
//console.debug('traffic.js > onBeforeBehindTheSceneRequest(): ALLOW "%s" (%o) because "%s"', details.url, details, result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Blocked
|
2015-03-15 19:04:07 +01:00
|
|
|
//console.debug('traffic.js > onBeforeBehindTheSceneRequest(): BLOCK "%s" (%o) because "%s"', details.url, details, result);
|
2015-01-24 18:06:22 +01:00
|
|
|
|
|
|
|
return { 'cancel': true };
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-09-24 23:38:22 +02:00
|
|
|
// To handle `inline-script`.
|
|
|
|
|
|
|
|
var onHeadersReceived = function(details) {
|
|
|
|
// Do not interfere with behind-the-scene requests.
|
|
|
|
var tabId = details.tabId;
|
2015-01-24 18:06:22 +01:00
|
|
|
if ( vAPI.isNoTabId(tabId) ) {
|
2014-09-24 23:38:22 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-13 13:36:12 +01:00
|
|
|
var requestURL = details.url;
|
|
|
|
|
2014-09-24 23:38:22 +02:00
|
|
|
// Lookup the page store associated with this tab id.
|
|
|
|
var µb = µBlock;
|
|
|
|
var pageStore = µb.pageStoreFromTabId(tabId);
|
|
|
|
if ( !pageStore ) {
|
2015-03-13 15:20:33 +01:00
|
|
|
if ( details.type === 'main_frame' ) {
|
2015-03-13 13:36:12 +01:00
|
|
|
pageStore = µb.bindTabToPageStats(tabId, requestURL, 'beforeRequest');
|
|
|
|
}
|
|
|
|
if ( !pageStore ) {
|
|
|
|
return;
|
|
|
|
}
|
2014-09-24 23:38:22 +02:00
|
|
|
}
|
|
|
|
|
2014-11-29 21:26:01 +01:00
|
|
|
// https://github.com/gorhill/uBlock/issues/384
|
2015-01-19 01:17:36 +01:00
|
|
|
// https://github.com/gorhill/uBlock/issues/540
|
|
|
|
// Disabling local mirroring for the time being
|
|
|
|
//if ( details.parentFrameId === -1 ) {
|
2015-01-19 04:26:07 +01:00
|
|
|
// pageStore.skipLocalMirroring = headerStartsWith(details.responseHeaders, 'content-security-policy') !== '';
|
2015-01-19 01:17:36 +01:00
|
|
|
//}
|
2015-01-13 17:54:54 +01:00
|
|
|
|
2015-01-21 01:39:13 +01:00
|
|
|
var requestHostname = details.hostname;
|
2015-01-17 21:03:33 +01:00
|
|
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/525
|
|
|
|
// When we are dealing with the root frame, due to fix to issue #516, it
|
|
|
|
// is likely the root frame has not been bound yet to the tab, and thus
|
|
|
|
// we could end up using the context of the previous page for filtering.
|
|
|
|
// So when the request is that of a root frame, simply create an
|
|
|
|
// artificial context, this will ensure we are properly filtering
|
|
|
|
// inline scripts.
|
|
|
|
var context;
|
|
|
|
if ( details.parentFrameId === -1 ) {
|
2015-01-21 01:39:13 +01:00
|
|
|
var contextDomain = µb.URI.domainFromHostname(requestHostname);
|
2015-01-17 21:03:33 +01:00
|
|
|
context = {
|
|
|
|
rootHostname: requestHostname,
|
2015-01-21 01:39:13 +01:00
|
|
|
rootDomain: contextDomain,
|
2015-01-17 21:03:33 +01:00
|
|
|
pageHostname: requestHostname,
|
2015-01-21 01:39:13 +01:00
|
|
|
pageDomain: contextDomain
|
2015-01-17 21:03:33 +01:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
context = pageStore;
|
|
|
|
}
|
|
|
|
|
2015-01-13 17:54:54 +01:00
|
|
|
// Concatenating with '{inline-script}' so that the network request cache
|
|
|
|
// can distinguish from the document itself
|
2015-01-17 21:03:33 +01:00
|
|
|
// The cache should do whatever it takes to not confuse same
|
|
|
|
// URLs-different type
|
|
|
|
context.requestURL = requestURL + '{inline-script}';
|
|
|
|
context.requestHostname = requestHostname;
|
|
|
|
context.requestType = 'inline-script';
|
|
|
|
|
|
|
|
var result = pageStore.filterRequest(context);
|
2015-01-24 18:06:22 +01:00
|
|
|
|
|
|
|
pageStore.logRequest(context, result);
|
|
|
|
|
|
|
|
// Don't block
|
|
|
|
if ( µb.isAllowResult(result) ) {
|
2014-09-24 23:38:22 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
µb.updateBadgeAsync(tabId);
|
|
|
|
|
|
|
|
details.responseHeaders.push({
|
|
|
|
'name': 'Content-Security-Policy',
|
2014-10-06 20:02:44 +02:00
|
|
|
'value': "script-src 'unsafe-eval' *"
|
2014-09-24 23:38:22 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return { 'responseHeaders': details.responseHeaders };
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-10-17 21:44:19 +02:00
|
|
|
vAPI.net.onBeforeRequest = {
|
|
|
|
urls: [
|
|
|
|
'http://*/*',
|
|
|
|
'https://*/*'
|
|
|
|
],
|
|
|
|
types: [
|
|
|
|
"main_frame",
|
|
|
|
"sub_frame",
|
|
|
|
'stylesheet',
|
|
|
|
"script",
|
|
|
|
"image",
|
|
|
|
"object",
|
|
|
|
"xmlhttprequest",
|
|
|
|
"other"
|
|
|
|
],
|
|
|
|
extra: [ 'blocking' ],
|
|
|
|
callback: onBeforeRequest
|
|
|
|
};
|
|
|
|
|
|
|
|
vAPI.net.onHeadersReceived = {
|
|
|
|
urls: [
|
|
|
|
'http://*/*',
|
|
|
|
'https://*/*'
|
|
|
|
],
|
|
|
|
types: [
|
2015-01-13 17:54:54 +01:00
|
|
|
"main_frame",
|
|
|
|
"sub_frame"
|
2014-10-17 21:44:19 +02:00
|
|
|
],
|
|
|
|
extra: [ 'blocking', 'responseHeaders' ],
|
|
|
|
callback: onHeadersReceived
|
|
|
|
};
|
|
|
|
|
|
|
|
vAPI.net.registerListeners();
|
2014-09-24 23:38:22 +02:00
|
|
|
|
2015-01-24 18:06:22 +01:00
|
|
|
//console.log('traffic.js > Beginning to intercept net requests at %s', (new Date()).toISOString());
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-03-26 00:28:22 +01:00
|
|
|
exports.temporarilyWhitelistDocument = function(url) {
|
|
|
|
var µb = µBlock;
|
|
|
|
var hostname = µb.URI.hostnameFromURI(url);
|
|
|
|
if ( hostname === '' ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
documentWhitelists[hostname] = Date.now() + 60 * 1000;
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
return exports;
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
})();
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|