mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-02 00:42:45 +01:00
543 lines
17 KiB
JavaScript
543 lines
17 KiB
JavaScript
/*******************************************************************************
|
|
|
|
uBlock Origin - a browser extension to block requests.
|
|
Copyright (C) 2014-2016 The uBlock Origin authors
|
|
|
|
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
|
|
*/
|
|
|
|
/* global HTMLDocument, XMLDocument,
|
|
addMessageListener, removeMessageListener, sendAsyncMessage, outerShutdown
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
// For non background pages
|
|
|
|
/******************************************************************************/
|
|
|
|
(function(self) {
|
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/464
|
|
if ( document instanceof HTMLDocument === false ) {
|
|
// https://github.com/chrisaljoudi/uBlock/issues/1528
|
|
// A XMLDocument can be a valid HTML document.
|
|
if (
|
|
document instanceof XMLDocument === false ||
|
|
document.createElement('div') instanceof HTMLDivElement === false
|
|
) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|
|
var vAPI = self.vAPI = self.vAPI || {};
|
|
|
|
/******************************************************************************/
|
|
|
|
// Support minimally working Set() for legacy Firefox: iterator for legacy
|
|
// Set() does not work like the one for standard ES6 Set().
|
|
|
|
if ( self.Set.prototype.iterator instanceof Function === false ) {
|
|
self.createSet = function() {
|
|
return new Set();
|
|
};
|
|
} else {
|
|
self.createSet = (function() {
|
|
//console.log('Patching non-ES6 Set() to be more ES6-like.');
|
|
var values = function() {
|
|
this._valueIter = this.prototype.values();
|
|
this.value = undefined;
|
|
this.done = false;
|
|
return this;
|
|
};
|
|
var next = function() {
|
|
try {
|
|
this.value = this._valueIter.next();
|
|
} catch (ex) {
|
|
this._valueIter = undefined;
|
|
this.value = undefined;
|
|
this.done = true;
|
|
}
|
|
return this;
|
|
};
|
|
return function() {
|
|
var r = new Set();
|
|
r._valueIter = undefined;
|
|
r.value = undefined;
|
|
r.done = false;
|
|
r.values = values.bind(r);
|
|
r.next = next.bind(r);
|
|
return r;
|
|
};
|
|
})();
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|
|
var referenceCounter = 0;
|
|
|
|
vAPI.lock = function() {
|
|
referenceCounter += 1;
|
|
};
|
|
|
|
vAPI.unlock = function() {
|
|
referenceCounter -= 1;
|
|
};
|
|
|
|
/******************************************************************************/
|
|
|
|
vAPI.executionCost = {
|
|
start: function(){},
|
|
stop: function(){}
|
|
};
|
|
/*
|
|
vAPI.executionCost = vAPI.executionCost || {
|
|
tcost: 0,
|
|
tstart: 0,
|
|
nstart: 0,
|
|
level: 1,
|
|
start: function() {
|
|
if ( this.nstart === 0 ) {
|
|
this.tstart = window.performance.now();
|
|
}
|
|
this.nstart += 1;
|
|
},
|
|
stop: function(mark) {
|
|
this.nstart -= 1;
|
|
if ( this.nstart !== 0 ) {
|
|
return;
|
|
}
|
|
var tcost = window.performance.now() - this.tstart;
|
|
this.tcost += tcost;
|
|
if ( mark === undefined ) {
|
|
return;
|
|
}
|
|
var top = window === window.top;
|
|
if ( !top && this.level < 2 ) {
|
|
return;
|
|
}
|
|
var context = window === window.top ? ' top' : 'frame';
|
|
var percent = this.tcost / window.performance.now() * 100;
|
|
console.log(
|
|
'uBO cost (' + context + '): ' +
|
|
this.tcost.toFixed(1) + 'ms/' +
|
|
percent.toFixed(1) + '% (' +
|
|
mark + ': ' + tcost.toFixed(2) + 'ms)'
|
|
);
|
|
}
|
|
};
|
|
*/
|
|
vAPI.executionCost.start();
|
|
|
|
/******************************************************************************/
|
|
|
|
vAPI.firefox = true;
|
|
|
|
vAPI.randomToken = function() {
|
|
return String.fromCharCode(Date.now() % 26 + 97) +
|
|
Math.floor(Math.random() * 982451653 + 982451653).toString(36);
|
|
};
|
|
|
|
vAPI.sessionId = vAPI.randomToken();
|
|
|
|
/******************************************************************************/
|
|
|
|
vAPI.setTimeout = vAPI.setTimeout || function(callback, delay, extra) {
|
|
return setTimeout(function(a) { callback(a); }, delay, extra);
|
|
};
|
|
|
|
/******************************************************************************/
|
|
|
|
vAPI.shutdown = {
|
|
jobs: [],
|
|
add: function(job) {
|
|
this.jobs.push(job);
|
|
},
|
|
exec: function() {
|
|
var job;
|
|
while ( (job = this.jobs.pop()) ) {
|
|
job();
|
|
}
|
|
},
|
|
remove: function(job) {
|
|
var pos;
|
|
while ( (pos = this.jobs.indexOf(job)) !== -1 ) {
|
|
this.jobs.splice(pos, 1);
|
|
}
|
|
}
|
|
};
|
|
|
|
/******************************************************************************/
|
|
|
|
(function() {
|
|
if ( !self.getScriptTagFilters ) {
|
|
return;
|
|
}
|
|
var hostname = location.hostname;
|
|
if ( !hostname ) {
|
|
return;
|
|
}
|
|
var filters = self.getScriptTagFilters({
|
|
rootURL: self.location.href,
|
|
frameURL: self.location.href,
|
|
frameHostname: hostname
|
|
});
|
|
if ( typeof filters !== 'string' || filters === '' ) {
|
|
return;
|
|
}
|
|
var reFilters = new RegExp(filters);
|
|
document.addEventListener('beforescriptexecute', function(ev) {
|
|
if ( reFilters.test(ev.target.textContent) ) {
|
|
ev.preventDefault();
|
|
ev.stopPropagation();
|
|
}
|
|
});
|
|
})();
|
|
|
|
/******************************************************************************/
|
|
|
|
vAPI.messaging = {
|
|
channels: Object.create(null),
|
|
channelCount: 0,
|
|
pending: Object.create(null),
|
|
pendingCount: 0,
|
|
auxProcessId: 1,
|
|
connected: false,
|
|
|
|
messageListener: function(msg) {
|
|
var details = JSON.parse(msg);
|
|
if ( !details ) {
|
|
return;
|
|
}
|
|
|
|
// Sent to all channels
|
|
if ( details.broadcast && !details.channelName ) {
|
|
for ( var channelName in this.channels ) {
|
|
this.sendToChannelListeners(channelName, details.msg);
|
|
}
|
|
return;
|
|
}
|
|
|
|
// Response to specific message previously sent
|
|
if ( details.auxProcessId ) {
|
|
var listener = this.pending[details.auxProcessId];
|
|
delete this.pending[details.auxProcessId];
|
|
delete details.auxProcessId; // TODO: why?
|
|
if ( listener ) {
|
|
this.pendingCount -= 1;
|
|
listener(details.msg);
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Sent to a specific channel
|
|
var response = this.sendToChannelListeners(details.channelName, details.msg);
|
|
|
|
// Respond back if required
|
|
if ( details.mainProcessId === undefined ) {
|
|
return;
|
|
}
|
|
sendAsyncMessage('ublock0:background', {
|
|
mainProcessId: details.mainProcessId,
|
|
msg: response
|
|
});
|
|
},
|
|
|
|
builtinListener: function(msg) {
|
|
if ( msg.cmd === 'injectScript' ) {
|
|
// injectScript is not always present.
|
|
// - See contentObserver.initContentScripts in frameModule.js
|
|
if ( typeof self.injectScript !== 'function' ) {
|
|
return;
|
|
}
|
|
var details = msg.details;
|
|
// Whether to inject in all child frames. Default to only top frame.
|
|
var allFrames = details.allFrames || false;
|
|
if ( allFrames !== true && window !== window.top ) {
|
|
return;
|
|
}
|
|
// https://github.com/gorhill/uBlock/issues/876
|
|
// Enforce `details.runAt`. Default to `document_end`.
|
|
var runAt = details.runAt || 'document_end';
|
|
if ( runAt === 'document_start' || document.readyState !== 'loading' ) {
|
|
self.injectScript(details.file);
|
|
return;
|
|
}
|
|
var injectScriptDelayed = function() {
|
|
document.removeEventListener('DOMContentLoaded', injectScriptDelayed);
|
|
self.injectScript(details.file);
|
|
};
|
|
document.addEventListener('DOMContentLoaded', injectScriptDelayed);
|
|
return;
|
|
}
|
|
if ( msg.cmd === 'shutdownSandbox' ) {
|
|
vAPI.shutdown.exec();
|
|
this.stop();
|
|
if ( typeof self.outerShutdown === 'function' ) {
|
|
outerShutdown();
|
|
}
|
|
// https://github.com/gorhill/uBlock/issues/1573
|
|
// Will let uBO's own web pages close themselves. `window.top` is
|
|
// used on the assumption that uBO's own web pages will never be
|
|
// embedded in anything else than its own documents.
|
|
try {
|
|
var top = window.top;
|
|
if ( top.location.href.startsWith(vAPI.getURL('')) ) {
|
|
top.close();
|
|
}
|
|
} catch (ex) {
|
|
}
|
|
return;
|
|
}
|
|
},
|
|
|
|
toggleListener: function({type, persisted}) {
|
|
if ( type === 'pagehide' && !persisted ) {
|
|
vAPI.shutdown.exec();
|
|
this.stop();
|
|
if ( typeof self.outerShutdown === 'function' ) {
|
|
outerShutdown();
|
|
}
|
|
return;
|
|
}
|
|
|
|
if ( type === 'pagehide' ) {
|
|
this.disconnect();
|
|
} else /* if ( type === 'pageshow' ) */ {
|
|
this.connect();
|
|
}
|
|
},
|
|
toggleListenerCallback: null,
|
|
|
|
start: function() {
|
|
this.addChannelListener('vAPI', this.builtinListener.bind(this));
|
|
if ( this.toggleListenerCallback === null ) {
|
|
this.toggleListenerCallback = this.toggleListener.bind(this);
|
|
}
|
|
window.addEventListener('pagehide', this.toggleListenerCallback, true);
|
|
window.addEventListener('pageshow', this.toggleListenerCallback, true);
|
|
},
|
|
|
|
stop: function() {
|
|
if ( this.toggleListenerCallback !== null ) {
|
|
window.removeEventListener('pagehide', this.toggleListenerCallback, true);
|
|
window.removeEventListener('pageshow', this.toggleListenerCallback, true);
|
|
}
|
|
this.disconnect();
|
|
this.channels = Object.create(null);
|
|
this.channelCount = 0;
|
|
// service pending callbacks
|
|
var pending = this.pending, callback;
|
|
this.pending = Object.create(null);
|
|
this.pendingCount = 0;
|
|
for ( var auxId in pending ) {
|
|
callback = pending[auxId];
|
|
if ( typeof callback === 'function' ) {
|
|
callback(null);
|
|
}
|
|
}
|
|
},
|
|
|
|
connect: function() {
|
|
if ( !this.connected ) {
|
|
addMessageListener(this.messageListener.bind(this));
|
|
this.connected = true;
|
|
}
|
|
},
|
|
|
|
disconnect: function() {
|
|
if ( this.connected ) {
|
|
removeMessageListener();
|
|
this.connected = false;
|
|
}
|
|
},
|
|
|
|
send: function(channelName, message, callback) {
|
|
this.sendTo(channelName, message, undefined, undefined, callback);
|
|
},
|
|
|
|
sendTo: function(channelName, message, toTabId, toChannel, callback) {
|
|
if ( !this.connected ) {
|
|
if ( typeof callback === 'function' ) {
|
|
callback();
|
|
}
|
|
return;
|
|
}
|
|
// Too large a gap between the last request and the last response means
|
|
// the main process is no longer reachable: memory leaks and bad
|
|
// performance become a risk -- especially for long-lived, dynamic
|
|
// pages. Guard against this.
|
|
if ( this.pendingCount > 25 ) {
|
|
vAPI.shutdown.exec();
|
|
}
|
|
this.connect();
|
|
var auxProcessId;
|
|
if ( callback ) {
|
|
auxProcessId = this.auxProcessId++;
|
|
this.pending[auxProcessId] = callback;
|
|
this.pendingCount += 1;
|
|
}
|
|
sendAsyncMessage('ublock0:background', {
|
|
channelName: self._sandboxId_ + '|' + channelName,
|
|
auxProcessId: auxProcessId,
|
|
toTabId: toTabId,
|
|
toChannel: toChannel,
|
|
msg: message
|
|
});
|
|
},
|
|
|
|
addChannelListener: function(channelName, callback) {
|
|
if ( typeof callback !== 'function' ) {
|
|
return;
|
|
}
|
|
var listeners = this.channels[channelName];
|
|
if ( listeners !== undefined && listeners.indexOf(callback) !== -1 ) {
|
|
console.error('Duplicate listener on channel "%s"', channelName);
|
|
return;
|
|
}
|
|
if ( listeners === undefined ) {
|
|
this.channels[channelName] = [callback];
|
|
this.channelCount += 1;
|
|
} else {
|
|
listeners.push(callback);
|
|
}
|
|
this.connect();
|
|
},
|
|
|
|
removeChannelListener: function(channelName, callback) {
|
|
if ( typeof callback !== 'function' ) {
|
|
return;
|
|
}
|
|
var listeners = this.channels[channelName];
|
|
if ( listeners === undefined ) {
|
|
return;
|
|
}
|
|
var pos = this.listeners.indexOf(callback);
|
|
if ( pos === -1 ) {
|
|
console.error('Listener not found on channel "%s"', channelName);
|
|
return;
|
|
}
|
|
listeners.splice(pos, 1);
|
|
if ( listeners.length === 0 ) {
|
|
delete this.channels[channelName];
|
|
this.channelCount -= 1;
|
|
}
|
|
},
|
|
|
|
removeAllChannelListeners: function(channelName) {
|
|
var listeners = this.channels[channelName];
|
|
if ( listeners === undefined ) {
|
|
return;
|
|
}
|
|
delete this.channels[channelName];
|
|
this.channelCount -= 1;
|
|
},
|
|
|
|
sendToChannelListeners: function(channelName, msg) {
|
|
var listeners = this.channels[channelName];
|
|
if ( listeners === undefined ) {
|
|
return;
|
|
}
|
|
var response;
|
|
for ( var i = 0, n = listeners.length; i < n; i++ ) {
|
|
response = listeners[i](msg);
|
|
if ( response !== undefined ) {
|
|
break;
|
|
}
|
|
}
|
|
return response;
|
|
}
|
|
};
|
|
|
|
vAPI.messaging.start();
|
|
|
|
// https://www.youtube.com/watch?v=Cg0cmhjdiLs
|
|
|
|
/******************************************************************************/
|
|
|
|
if ( self.injectCSS ) {
|
|
vAPI.userCSS = {
|
|
_userCSS: '',
|
|
_sheetURI: '',
|
|
_load: function() {
|
|
if ( this._userCSS === '' || this._sheetURI !== '' ) { return; }
|
|
this._sheetURI = 'data:text/css;charset=utf-8,' + encodeURIComponent(this._userCSS);
|
|
self.injectCSS(this._sheetURI);
|
|
},
|
|
_unload: function() {
|
|
if ( this._sheetURI === '' ) { return; }
|
|
self.removeCSS(this._sheetURI);
|
|
this._sheetURI = '';
|
|
},
|
|
add: function(cssText) {
|
|
if ( cssText === '' ) { return; }
|
|
if ( this._userCSS !== '' ) { this._userCSS += '\n'; }
|
|
this._userCSS += cssText;
|
|
this._unload();
|
|
this._load();
|
|
},
|
|
remove: function(cssText) {
|
|
if ( cssText === '' || this._userCSS === '' ) { return; }
|
|
this._userCSS = this._userCSS.replace(cssText, '').trim();
|
|
this._unload();
|
|
this._load();
|
|
},
|
|
toggle: function(state) {
|
|
if ( this._userCSS === '' ) { return; }
|
|
if ( state === undefined ) {
|
|
state = this._sheetURI === '';
|
|
}
|
|
return state ? this._load() : this._unload();
|
|
}
|
|
};
|
|
vAPI.hideNode = vAPI.unhideNode = function(){};
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=444165
|
|
// https://github.com/gorhill/uBlock/issues/2256
|
|
// Not the prettiest solution, but that's the safest/simplest I can think
|
|
// of at this point. If/when bugzilla issue above is solved, we will need
|
|
// version detection to decide whether the patch needs to be applied.
|
|
|
|
vAPI.iframeLoadEventPatch = function(target) {
|
|
if ( target.localName === 'iframe' ) {
|
|
target.dispatchEvent(new Event('load'));
|
|
}
|
|
};
|
|
|
|
/******************************************************************************/
|
|
|
|
// No need to have vAPI client linger around after shutdown if
|
|
// we are not a top window (because element picker can still
|
|
// be injected in top window).
|
|
if ( window !== window.top ) {
|
|
// Can anything be done?
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|
|
vAPI.executionCost.stop('vapi-client.js');
|
|
|
|
/******************************************************************************/
|
|
|
|
})(this);
|
|
|
|
/******************************************************************************/
|