1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-03 19:04:56 +12:00
uMatrix/platform/chromium/vapi-background.js

864 lines
27 KiB
JavaScript
Raw Normal View History

2014-11-25 05:49:11 +13:00
/*******************************************************************************
2015-04-12 09:15:57 +12:00
µMatrix - a browser extension to block requests.
Copyright (C) 2014 The uBlock authors
2014-11-25 05:49:11 +13:00
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
*/
2015-04-12 09:15:57 +12:00
/* global self, µMatrix */
2014-11-25 05:49:11 +13:00
// For background page
/******************************************************************************/
(function() {
'use strict';
/******************************************************************************/
2015-01-15 11:45:55 +13:00
var vAPI = self.vAPI = self.vAPI || {};
2014-11-25 05:49:11 +13:00
var chrome = self.chrome;
2014-12-02 05:25:33 +13:00
var manifest = chrome.runtime.getManifest();
2014-11-25 05:49:11 +13:00
vAPI.chrome = true;
2015-01-21 13:39:13 +13:00
var noopFunc = function(){};
2014-11-25 05:49:11 +13:00
/******************************************************************************/
2014-12-02 05:25:33 +13:00
vAPI.app = {
name: manifest.name,
version: manifest.version
};
/******************************************************************************/
2015-04-12 09:15:57 +12:00
vAPI.app.start = function() {
// rhill 2013-12-07:
// Relinquish control over javascript execution to the user.
// https://github.com/gorhill/httpswitchboard/issues/74
2015-05-03 04:07:40 +12:00
//chrome.contentSettings.javascript.clear({});
2015-04-12 09:15:57 +12:00
};
/******************************************************************************/
vAPI.app.stop = function() {
chrome.contentSettings.javascript.clear({});
// rhill 2013-12-07:
// 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
2015-05-03 04:07:40 +12:00
//chrome.contentSettings.javascript.set({
// primaryPattern: 'https://*/*',
// setting: 'allow'
//});
//chrome.contentSettings.javascript.set({
// primaryPattern: 'http://*/*',
// setting: 'allow'
//});
2015-04-12 09:15:57 +12:00
};
/******************************************************************************/
vAPI.app.restart = function() {
chrome.runtime.reload();
};
/******************************************************************************/
2015-03-28 06:00:55 +13:00
// chrome.storage.local.get(null, function(bin){ console.debug('%o', bin); });
2014-11-25 05:49:11 +13:00
vAPI.storage = chrome.storage.local;
/******************************************************************************/
vAPI.tabs = {};
/******************************************************************************/
vAPI.isBehindTheSceneTabId = function(tabId) {
return tabId.toString() === '-1';
};
vAPI.noTabId = '-1';
/******************************************************************************/
2014-11-25 05:49:11 +13:00
2015-03-21 08:14:56 +13:00
vAPI.tabs.registerListeners = function() {
var onNavigationClient = this.onNavigation || noopFunc;
2015-03-28 06:00:55 +13:00
var onUpdatedClient = this.onUpdated || noopFunc;
var onClosedClient = this.onClosed || noopFunc;
2015-03-21 08:14:56 +13:00
// https://developer.chrome.com/extensions/webNavigation
// [onCreatedNavigationTarget ->]
// onBeforeNavigate ->
// onCommitted ->
// onDOMContentLoaded ->
// onCompleted
// The chrome.webRequest.onBeforeRequest() won't be called for everything
// else than `http`/`https`. Thus, in such case, we will bind the tab as
// early as possible in order to increase the likelihood of a context
// properly setup if network requests are fired from within the tab.
// Example: Chromium + case #6 at
// http://raymondhill.net/ublock/popup.html
var reGoodForWebRequestAPI = /^https?:\/\//;
2015-03-21 08:14:56 +13:00
var onCreatedNavigationTarget = function(details) {
//console.debug('onCreatedNavigationTarget: tab id %d = "%s"', details.tabId, details.url);
if ( reGoodForWebRequestAPI.test(details.url) ) {
return;
2015-03-21 16:37:43 +13:00
}
details.tabId = details.tabId.toString();
onNavigationClient(details);
2015-03-21 08:14:56 +13:00
};
2015-03-28 06:00:55 +13:00
var onUpdated = function(tabId, changeInfo, tab) {
tabId = tabId.toString();
2015-03-28 06:00:55 +13:00
onUpdatedClient(tabId, changeInfo, tab);
};
2015-03-21 08:14:56 +13:00
var onCommitted = function(details) {
2015-05-13 10:29:51 +12:00
// Important: do not call client if not top frame.
if ( details.frameId !== 0 ) {
return;
2015-03-21 08:14:56 +13:00
}
details.tabId = details.tabId.toString();
2015-03-21 08:14:56 +13:00
onNavigationClient(details);
//console.debug('onCommitted: tab id %d = "%s"', details.tabId, details.url);
2015-03-21 08:14:56 +13:00
};
var onClosed = function(tabId) {
onClosedClient(tabId.toString());
};
2015-03-21 08:14:56 +13:00
chrome.webNavigation.onCreatedNavigationTarget.addListener(onCreatedNavigationTarget);
chrome.webNavigation.onCommitted.addListener(onCommitted);
2015-03-28 06:00:55 +13:00
chrome.tabs.onUpdated.addListener(onUpdated);
chrome.tabs.onRemoved.addListener(onClosed);
2014-11-25 05:49:11 +13:00
};
/******************************************************************************/
2015-04-12 09:15:57 +12:00
// tabId: null, // active tab
2014-11-25 05:49:11 +13:00
vAPI.tabs.get = function(tabId, callback) {
var onTabReady = function(tab) {
// https://code.google.com/p/chromium/issues/detail?id=410868#c8
if ( chrome.runtime.lastError ) {
}
if ( tab instanceof Object ) {
tab.id = tab.id.toString();
}
2014-11-25 05:49:11 +13:00
callback(tab);
};
if ( tabId !== null ) {
2015-01-03 07:42:35 +13:00
if ( typeof tabId === 'string' ) {
tabId = parseInt(tabId, 10);
}
2014-11-25 05:49:11 +13:00
chrome.tabs.get(tabId, onTabReady);
return;
}
var onTabReceived = function(tabs) {
// https://code.google.com/p/chromium/issues/detail?id=410868#c8
if ( chrome.runtime.lastError ) {
}
var tab = null;
if ( Array.isArray(tabs) && tabs.length !== 0 ) {
tab = tabs[0];
tab.id = tab.id.toString();
}
callback(tab);
2014-11-25 05:49:11 +13:00
};
chrome.tabs.query({ active: true, currentWindow: true }, onTabReceived);
};
/******************************************************************************/
2015-04-12 09:15:57 +12:00
vAPI.tabs.getAll = function(callback) {
var onTabsReady = function(tabs) {
if ( Array.isArray(tabs) ) {
var i = tabs.length;
while ( i-- ) {
tabs[i].id = tabs[i].id.toString();
}
}
callback(tabs);
};
chrome.tabs.query({ url: '<all_urls>' }, onTabsReady);
2015-04-12 09:15:57 +12:00
};
/******************************************************************************/
2014-11-25 05:49:11 +13:00
// properties of the details object:
// url: 'URL', // the address that will be opened
// tabId: 1, // the tab is used if set, instead of creating a new one
// index: -1, // undefined: end of the list, -1: following tab, or after index
// active: false, // opens the tab in background - true and undefined: foreground
// select: true // if a tab is already opened with that url, then select it instead of opening a new one
vAPI.tabs.open = function(details) {
var targetURL = details.url;
if ( typeof targetURL !== 'string' || targetURL === '' ) {
return null;
}
// extension pages
if ( /^[\w-]{2,}:/.test(targetURL) !== true ) {
targetURL = vAPI.getURL(targetURL);
}
// dealing with Chrome's asynchronous API
var wrapper = function() {
if ( details.active === undefined ) {
details.active = true;
}
var subWrapper = function() {
var _details = {
url: targetURL,
active: !!details.active
};
// Opening a tab from incognito window won't focus the window
// in which the tab was opened
var focusWindow = function(tab) {
if ( tab.active ) {
chrome.windows.update(tab.windowId, { focused: true });
}
};
if ( !details.tabId ) {
2014-11-25 05:49:11 +13:00
if ( details.index !== undefined ) {
_details.index = details.index;
}
chrome.tabs.create(_details, focusWindow);
return;
2014-11-25 05:49:11 +13:00
}
// update doesn't accept index, must use move
chrome.tabs.update(parseInt(details.tabId, 10), _details, function(tab) {
// if the tab doesn't exist
if ( vAPI.lastError() ) {
chrome.tabs.create(_details, focusWindow);
} else if ( details.index !== undefined ) {
chrome.tabs.move(tab.id, {index: details.index});
2014-11-25 05:49:11 +13:00
}
});
};
if ( details.index !== -1 ) {
2014-11-25 05:49:11 +13:00
subWrapper();
return;
2014-11-25 05:49:11 +13:00
}
vAPI.tabs.get(null, function(tab) {
if ( tab ) {
details.index = tab.index + 1;
} else {
delete details.index;
2014-11-25 05:49:11 +13:00
}
subWrapper();
2014-11-25 05:49:11 +13:00
});
};
if ( !details.select ) {
2014-11-25 05:49:11 +13:00
wrapper();
return;
2014-11-25 05:49:11 +13:00
}
2015-03-13 02:28:02 +13:00
chrome.tabs.query({ url: targetURL }, function(tabs) {
var tab = tabs[0];
if ( tab ) {
chrome.tabs.update(tab.id, { active: true }, function(tab) {
chrome.windows.update(tab.windowId, { focused: true });
});
2015-03-13 02:28:02 +13:00
} else {
wrapper();
}
});
2014-11-25 05:49:11 +13:00
};
/******************************************************************************/
2015-03-28 06:00:55 +13:00
// Replace the URL of a tab. Noop if the tab does not exist.
vAPI.tabs.replace = function(tabId, url) {
var targetURL = url;
// extension pages
if ( /^[\w-]{2,}:/.test(targetURL) !== true ) {
targetURL = vAPI.getURL(targetURL);
}
if ( typeof tabId !== 'number' ) {
tabId = parseInt(tabId, 10);
if ( isNaN(tabId) ) {
return;
}
}
chrome.tabs.update(tabId, { url: targetURL }, function() {
// this prevent console error
if ( chrome.runtime.lastError ) {
return;
}
});
};
/******************************************************************************/
2014-11-25 05:49:11 +13:00
vAPI.tabs.remove = function(tabId) {
var onTabRemoved = function() {
if ( vAPI.lastError() ) {
}
};
chrome.tabs.remove(parseInt(tabId, 10), onTabRemoved);
2014-11-25 05:49:11 +13:00
};
/******************************************************************************/
2015-01-22 02:59:23 +13:00
vAPI.tabs.reload = function(tabId /*, flags*/) {
if ( typeof tabId === 'string' ) {
tabId = parseInt(tabId, 10);
}
2015-04-12 09:15:57 +12:00
if ( isNaN(tabId) ) {
return;
}
chrome.tabs.reload(tabId);
};
/******************************************************************************/
2014-11-25 05:49:11 +13:00
vAPI.tabs.injectScript = function(tabId, details, callback) {
var onScriptExecuted = function() {
// https://code.google.com/p/chromium/issues/detail?id=410868#c8
if ( chrome.runtime.lastError ) {
}
if ( typeof callback === 'function' ) {
callback();
}
};
if ( tabId ) {
2014-12-20 01:17:25 +13:00
tabId = parseInt(tabId, 10);
2014-11-25 05:49:11 +13:00
chrome.tabs.executeScript(tabId, details, onScriptExecuted);
} else {
chrome.tabs.executeScript(details, onScriptExecuted);
}
};
/******************************************************************************/
// Must read: https://code.google.com/p/chromium/issues/detail?id=410868#c8
2015-04-07 13:26:05 +12:00
// https://github.com/chrisaljoudi/uBlock/issues/19
// https://github.com/chrisaljoudi/uBlock/issues/207
2014-11-25 05:49:11 +13:00
// Since we may be called asynchronously, the tab id may not exist
// anymore, so this ensures it does still exist.
2015-04-12 09:15:57 +12:00
vAPI.setIcon = function(tabId, iconId, badge) {
tabId = parseInt(tabId, 10);
2015-04-12 09:15:57 +12:00
if ( isNaN(tabId) || tabId <= 0 ) {
return;
}
2014-11-25 05:49:11 +13:00
var onIconReady = function() {
if ( vAPI.lastError() ) {
return;
}
chrome.browserAction.setBadgeText({ tabId: tabId, text: badge });
if ( badge !== '' ) {
chrome.browserAction.setBadgeBackgroundColor({
tabId: tabId,
2015-04-12 09:15:57 +12:00
color: '#000'
});
2014-11-25 05:49:11 +13:00
}
};
2015-04-12 09:15:57 +12:00
var iconSelector = typeof iconId === 'number' ? iconId : 'off';
var iconPaths = {
'19': 'img/browsericons/icon19-' + iconSelector + '.png'/* ,
'38': 'img/browsericons/icon38-' + iconSelector + '.png' */
};
chrome.browserAction.setIcon({ tabId: tabId, path: iconPaths }, onIconReady);
2014-11-25 05:49:11 +13:00
};
/******************************************************************************/
2014-11-25 05:49:11 +13:00
/******************************************************************************/
vAPI.messaging = {
ports: {},
listeners: {},
defaultHandler: null,
2015-01-21 13:39:13 +13:00
NOOPFUNC: noopFunc,
2014-11-25 05:49:11 +13:00
UNHANDLED: 'vAPI.messaging.notHandled'
};
/******************************************************************************/
vAPI.messaging.listen = function(listenerName, callback) {
this.listeners[listenerName] = callback;
};
/******************************************************************************/
vAPI.messaging.onPortMessage = function(request, port) {
var callback = vAPI.messaging.NOOPFUNC;
if ( request.requestId !== undefined ) {
callback = CallbackWrapper.factory(port, request).callback;
2014-11-25 05:49:11 +13:00
}
// Specific handler
var r = vAPI.messaging.UNHANDLED;
2014-12-29 09:26:06 +13:00
var listener = vAPI.messaging.listeners[request.channelName];
2014-11-25 05:49:11 +13:00
if ( typeof listener === 'function' ) {
r = listener(request.msg, port.sender, callback);
}
if ( r !== vAPI.messaging.UNHANDLED ) {
return;
}
// Default handler
r = vAPI.messaging.defaultHandler(request.msg, port.sender, callback);
if ( r !== vAPI.messaging.UNHANDLED ) {
return;
}
2015-04-12 09:15:57 +12:00
console.error('µMatrix> messaging > unknown request: %o', request);
2014-11-25 05:49:11 +13:00
// Unhandled:
// Need to callback anyways in case caller expected an answer, or
// else there is a memory leak on caller's side
callback();
};
/******************************************************************************/
vAPI.messaging.onPortDisconnect = function(port) {
port.onDisconnect.removeListener(vAPI.messaging.onPortDisconnect);
port.onMessage.removeListener(vAPI.messaging.onPortMessage);
delete vAPI.messaging.ports[port.name];
};
/******************************************************************************/
vAPI.messaging.onPortConnect = function(port) {
port.onDisconnect.addListener(vAPI.messaging.onPortDisconnect);
port.onMessage.addListener(vAPI.messaging.onPortMessage);
vAPI.messaging.ports[port.name] = port;
};
/******************************************************************************/
vAPI.messaging.setup = function(defaultHandler) {
// Already setup?
if ( this.defaultHandler !== null ) {
return;
}
if ( typeof defaultHandler !== 'function' ) {
defaultHandler = function(){ return vAPI.messaging.UNHANDLED; };
}
this.defaultHandler = defaultHandler;
chrome.runtime.onConnect.addListener(this.onPortConnect);
};
/******************************************************************************/
vAPI.messaging.broadcast = function(message) {
var messageWrapper = {
broadcast: true,
msg: message
};
for ( var portName in this.ports ) {
if ( this.ports.hasOwnProperty(portName) === false ) {
continue;
}
this.ports[portName].postMessage(messageWrapper);
}
};
/******************************************************************************/
// This allows to avoid creating a closure for every single message which
// expects an answer. Having a closure created each time a message is processed
2015-03-08 07:30:55 +13:00
// has been always bothering me. Another benefit of the implementation here
// is to reuse the callback proxy object, so less memory churning.
//
// https://developers.google.com/speed/articles/optimizing-javascript
// "Creating a closure is significantly slower then creating an inner
2015-03-08 07:30:55 +13:00
// function without a closure, and much slower than reusing a static
// function"
//
// http://hacksoflife.blogspot.ca/2015/01/the-four-horsemen-of-performance.html
2015-03-08 07:30:55 +13:00
// "the dreaded 'uniformly slow code' case where every function takes 1%
// of CPU and you have to make one hundred separate performance optimizations
// to improve performance at all"
2015-02-02 06:25:14 +13:00
//
// http://jsperf.com/closure-no-closure/2
var CallbackWrapper = function(port, request) {
// No need to bind every single time
this.callback = this.proxy.bind(this);
this.messaging = vAPI.messaging;
this.init(port, request);
};
CallbackWrapper.junkyard = [];
CallbackWrapper.factory = function(port, request) {
var wrapper = CallbackWrapper.junkyard.pop();
if ( wrapper ) {
wrapper.init(port, request);
return wrapper;
}
return new CallbackWrapper(port, request);
};
CallbackWrapper.prototype.init = function(port, request) {
this.port = port;
this.request = request;
};
CallbackWrapper.prototype.proxy = function(response) {
2015-04-07 13:26:05 +12:00
// https://github.com/chrisaljoudi/uBlock/issues/383
if ( this.messaging.ports.hasOwnProperty(this.port.name) ) {
this.port.postMessage({
requestId: this.request.requestId,
channelName: this.request.channelName,
msg: response !== undefined ? response : null
});
}
// Mark for reuse
this.port = this.request = null;
CallbackWrapper.junkyard.push(this);
};
/******************************************************************************/
/******************************************************************************/
2015-01-21 13:39:13 +13:00
vAPI.net = {};
/******************************************************************************/
vAPI.net.registerListeners = function() {
2015-04-12 09:15:57 +12:00
var µm = µMatrix;
var µmuri = µm.URI;
2015-04-20 08:19:14 +12:00
var httpRequestHeadersJunkyard = [];
// Abstraction layer to deal with request headers
// >>>>>>>>
var httpRequestHeadersFactory = function(headers) {
var entry = httpRequestHeadersJunkyard.pop();
if ( entry ) {
return entry.init(headers);
}
return new HTTPRequestHeaders(headers);
};
var HTTPRequestHeaders = function(headers) {
this.init(headers);
};
HTTPRequestHeaders.prototype.init = function(headers) {
this.modified = false;
this.headers = headers;
return this;
};
HTTPRequestHeaders.prototype.dispose = function() {
var r = this.modified ? this.headers : null;
this.headers = null;
httpRequestHeadersJunkyard.push(this);
return r;
};
HTTPRequestHeaders.prototype.getHeader = function(target) {
var headers = this.headers;
var header, name;
var i = headers.length;
while ( i-- ) {
header = headers[i];
name = header.name.toLowerCase();
if ( name === target ) {
return header.value;
}
}
return '';
};
2015-01-21 13:39:13 +13:00
2015-04-20 08:19:14 +12:00
HTTPRequestHeaders.prototype.setHeader = function(target, value, create) {
var headers = this.headers;
var header, name;
var i = headers.length;
while ( i-- ) {
header = headers[i];
name = header.name.toLowerCase();
if ( name === target ) {
break;
}
}
if ( i < 0 && !create ) { // Header not found, don't add it
return false;
}
if ( i < 0 ) { // Header not found, add it
headers.push({ name: target, value: value });
} else if ( value === '' ) { // Header found, remove it
headers.splice(i, 1);
} else { // Header found, modify it
header.value = value;
}
this.modified = true;
return true;
};
// <<<<<<<<
// End of: Abstraction layer to deal with request headers
// Normalizing request types
// >>>>>>>>
2015-01-21 13:39:13 +13:00
var normalizeRequestDetails = function(details) {
2015-04-12 09:15:57 +12:00
µmuri.set(details.url);
2015-01-21 13:39:13 +13:00
details.tabId = details.tabId.toString();
2015-04-12 09:15:57 +12:00
details.hostname = µmuri.hostnameFromURI(details.url);
2015-01-21 13:39:13 +13:00
2015-04-20 08:30:28 +12:00
// The rest of the function code is to normalize request type
2015-02-23 17:47:22 +13:00
if ( details.type !== 'other' ) {
2015-01-21 13:39:13 +13:00
return;
2014-11-25 05:49:11 +13:00
}
2015-02-23 17:47:22 +13:00
2015-04-20 08:30:28 +12:00
if ( details.requestHeaders instanceof HTTPRequestHeaders ) {
if ( details.requestHeaders.getHeader('ping-to') !== '' ) {
details.type = 'ping';
return;
}
}
2015-04-12 09:15:57 +12:00
var tail = µmuri.path.slice(-6);
2015-02-23 17:47:22 +13:00
var pos = tail.lastIndexOf('.');
2015-02-23 03:13:08 +13:00
2015-04-07 13:26:05 +12:00
// https://github.com/chrisaljoudi/uBlock/issues/862
2015-03-08 07:30:55 +13:00
// If no transposition possible, transpose to `object` as per
2015-02-23 03:13:08 +13:00
// Chromium bug 410382 (see below)
2015-01-21 13:39:13 +13:00
if ( pos === -1 ) {
return;
}
2015-02-23 03:13:08 +13:00
2015-02-23 17:47:22 +13:00
var ext = tail.slice(pos) + '.';
2015-01-21 13:39:13 +13:00
if ( '.eot.ttf.otf.svg.woff.woff2.'.indexOf(ext) !== -1 ) {
details.type = 'font';
return;
}
2015-01-22 03:25:12 +13:00
// Still need this because often behind-the-scene requests are wrongly
// categorized as 'other'
if ( '.ico.png.gif.jpg.jpeg.webp.'.indexOf(ext) !== -1 ) {
2015-01-21 13:39:13 +13:00
details.type = 'image';
return;
}
};
2015-04-20 08:19:14 +12:00
// <<<<<<<<
// End of: Normalizing request types
2015-01-21 13:39:13 +13:00
2015-05-09 23:44:56 +12:00
// rhill 2013-12-07:
// 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
chrome.contentSettings.javascript.set({
primaryPattern: 'https://*/*',
setting: 'allow'
});
chrome.contentSettings.javascript.set({
primaryPattern: 'http://*/*',
setting: 'allow'
});
2015-04-20 08:19:14 +12:00
// Network event handlers
// >>>>>>>>
2015-01-21 13:39:13 +13:00
var onBeforeRequestClient = this.onBeforeRequest.callback;
var onBeforeRequest = function(details) {
normalizeRequestDetails(details);
return onBeforeRequestClient(details);
};
chrome.webRequest.onBeforeRequest.addListener(
onBeforeRequest,
//function(details) {
// quickProfiler.start('onBeforeRequest');
// var r = onBeforeRequest(details);
// quickProfiler.stop();
// return r;
//},
2015-01-21 13:39:13 +13:00
{
'urls': this.onBeforeRequest.urls || ['<all_urls>'],
'types': this.onBeforeRequest.types || []
},
this.onBeforeRequest.extra
);
2015-04-12 09:15:57 +12:00
var onBeforeSendHeadersClient = this.onBeforeSendHeaders.callback;
var onBeforeSendHeaders = function(details) {
2015-04-20 08:19:14 +12:00
details.requestHeaders = httpRequestHeadersFactory(details.requestHeaders);
2015-04-20 08:30:28 +12:00
normalizeRequestDetails(details);
2015-04-20 08:19:14 +12:00
var result = onBeforeSendHeadersClient(details);
if ( typeof result === 'object' ) {
return result;
}
var modifiedHeaders = details.requestHeaders.dispose();
if ( modifiedHeaders !== null ) {
return { requestHeaders: modifiedHeaders };
}
2015-04-12 09:15:57 +12:00
};
chrome.webRequest.onBeforeSendHeaders.addListener(
onBeforeSendHeaders,
{
'urls': this.onBeforeSendHeaders.urls || ['<all_urls>'],
'types': this.onBeforeSendHeaders.types || []
},
this.onBeforeSendHeaders.extra
);
2015-01-21 13:39:13 +13:00
var onHeadersReceivedClient = this.onHeadersReceived.callback;
var onHeadersReceived = function(details) {
normalizeRequestDetails(details);
return onHeadersReceivedClient(details);
};
chrome.webRequest.onHeadersReceived.addListener(
onHeadersReceived,
{
'urls': this.onHeadersReceived.urls || ['<all_urls>'],
'types': this.onHeadersReceived.types || []
},
this.onHeadersReceived.extra
);
2015-04-20 08:19:14 +12:00
// <<<<<<<<
// End of: Network event handlers
2014-11-25 05:49:11 +13:00
};
/******************************************************************************/
2014-11-25 05:49:11 +13:00
/******************************************************************************/
vAPI.contextMenu = {
create: function(details, callback) {
this.menuId = details.id;
this.callback = callback;
chrome.contextMenus.create(details);
chrome.contextMenus.onClicked.addListener(this.callback);
},
remove: function() {
chrome.contextMenus.onClicked.removeListener(this.callback);
chrome.contextMenus.remove(this.menuId);
}
};
/******************************************************************************/
vAPI.lastError = function() {
return chrome.runtime.lastError;
};
/******************************************************************************/
2014-11-25 05:49:11 +13:00
/******************************************************************************/
// This is called only once, when everything has been loaded in memory after
// the extension was launched. It can be used to inject content scripts
// in already opened web pages, to remove whatever nuisance could make it to
// the web pages before uBlock was ready.
vAPI.onLoadAllCompleted = function() {
};
/******************************************************************************/
/******************************************************************************/
2015-01-15 11:45:55 +13:00
vAPI.punycodeHostname = function(hostname) {
return hostname;
};
vAPI.punycodeURL = function(url) {
return url;
};
/******************************************************************************/
2015-01-15 11:45:55 +13:00
/******************************************************************************/
vAPI.browserData = {};
2015-04-12 09:15:57 +12:00
/******************************************************************************/
// https://developer.chrome.com/extensions/browsingData
vAPI.browserData.clearCache = function(callback) {
chrome.browsingData.removeCache({ since: 0 }, callback);
2015-04-12 09:15:57 +12:00
};
/******************************************************************************/
// Not supported on Chromium
vAPI.browserData.clearOrigin = function(domain, callback) {
2015-04-12 09:15:57 +12:00
// unsupported on Chromium
if ( typeof callback === 'function' ) {
callback(undefined);
}
2015-04-12 09:15:57 +12:00
};
/******************************************************************************/
/******************************************************************************/
// https://developer.chrome.com/extensions/cookies
2015-04-12 09:15:57 +12:00
vAPI.cookies = {};
/******************************************************************************/
vAPI.cookies.start = function() {
var onChanged = function(changeInfo) {
var handler = changeInfo.removed ? this.onRemoved : this.onChanged;
if ( typeof handler !== 'function' ) {
return;
}
handler(changeInfo.cookie);
};
chrome.cookies.onChanged.addListener(onChanged.bind(this));
2015-04-12 09:15:57 +12:00
};
/******************************************************************************/
vAPI.cookies.getAll = function(callback) {
chrome.cookies.getAll({}, callback);
};
/******************************************************************************/
vAPI.cookies.remove = function(details, callback) {
chrome.cookies.remove(details, callback || noopFunc);
};
/******************************************************************************/
2015-04-12 09:15:57 +12:00
/******************************************************************************/
2014-11-25 05:49:11 +13:00
})();
/******************************************************************************/