2014-11-15 19:15:11 +01:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2014-12-17 21:33:53 +01:00
|
|
|
µBlock - a browser extension to block requests.
|
2014-11-15 19:15:11 +01:00
|
|
|
Copyright (C) 2014 The µBlock 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
|
|
|
|
*/
|
|
|
|
|
2014-12-17 14:02:37 +01:00
|
|
|
/* global self, µBlock */
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
// For background page
|
2014-11-15 19:15:11 +01:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-01-14 23:45:55 +01:00
|
|
|
var vAPI = self.vAPI = self.vAPI || {};
|
2014-11-15 19:15:11 +01:00
|
|
|
|
|
|
|
var chrome = self.chrome;
|
2014-12-01 17:25:33 +01:00
|
|
|
var manifest = chrome.runtime.getManifest();
|
2014-11-15 19:15:11 +01:00
|
|
|
|
|
|
|
vAPI.chrome = true;
|
|
|
|
|
2015-01-21 01:39:13 +01:00
|
|
|
var noopFunc = function(){};
|
|
|
|
|
2014-11-15 19:15:11 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-12-01 17:25:33 +01:00
|
|
|
vAPI.app = {
|
|
|
|
name: manifest.name,
|
|
|
|
version: manifest.version
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-12-02 17:02:17 +01:00
|
|
|
vAPI.app.restart = function() {
|
|
|
|
chrome.runtime.reload();
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-11-15 19:15:11 +01:00
|
|
|
vAPI.storage = chrome.storage.local;
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
vAPI.tabs = {};
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
/******************************************************************************/
|
2015-01-20 00:42:58 +01:00
|
|
|
|
|
|
|
vAPI.isNoTabId = function(tabId) {
|
|
|
|
return tabId.toString() === '-1';
|
|
|
|
};
|
|
|
|
|
|
|
|
vAPI.noTabId = '-1';
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
vAPI.tabs.registerListeners = function() {
|
|
|
|
if ( typeof this.onNavigation === 'function' ) {
|
|
|
|
chrome.webNavigation.onCommitted.addListener(this.onNavigation);
|
|
|
|
}
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
if ( typeof this.onUpdated === 'function' ) {
|
|
|
|
chrome.tabs.onUpdated.addListener(this.onUpdated);
|
|
|
|
}
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
if ( typeof this.onClosed === 'function' ) {
|
|
|
|
chrome.tabs.onRemoved.addListener(this.onClosed);
|
|
|
|
}
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
if ( typeof this.onPopup === 'function' ) {
|
|
|
|
chrome.webNavigation.onCreatedNavigationTarget.addListener(this.onPopup);
|
|
|
|
}
|
|
|
|
};
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
vAPI.tabs.get = function(tabId, callback) {
|
2014-11-21 02:18:33 +01:00
|
|
|
var onTabReady = function(tab) {
|
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=410868#c8
|
|
|
|
if ( chrome.runtime.lastError ) {
|
2015-01-21 14:59:23 +01:00
|
|
|
/* noop */
|
2014-11-21 02:18:33 +01:00
|
|
|
}
|
2015-01-02 19:42:35 +01:00
|
|
|
// Caller must be prepared to deal with nil tab value
|
2014-11-21 02:18:33 +01:00
|
|
|
callback(tab);
|
2014-11-24 15:48:33 +01:00
|
|
|
};
|
2014-11-16 14:09:28 +01:00
|
|
|
if ( tabId !== null ) {
|
2015-01-02 19:42:35 +01:00
|
|
|
if ( typeof tabId === 'string' ) {
|
|
|
|
tabId = parseInt(tabId, 10);
|
|
|
|
}
|
2014-11-21 02:18:33 +01:00
|
|
|
chrome.tabs.get(tabId, onTabReady);
|
2014-11-16 14:09:28 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
var onTabReceived = function(tabs) {
|
2014-11-21 02:18:33 +01:00
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=410868#c8
|
|
|
|
if ( chrome.runtime.lastError ) {
|
2015-01-21 14:59:23 +01:00
|
|
|
/* noop */
|
2014-11-21 02:18:33 +01:00
|
|
|
}
|
2014-11-16 14:09:28 +01:00
|
|
|
callback(tabs[0]);
|
|
|
|
};
|
|
|
|
chrome.tabs.query({ active: true, currentWindow: true }, onTabReceived);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// 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) {
|
2014-11-16 20:04:37 +01:00
|
|
|
var targetURL = details.url;
|
|
|
|
if ( typeof targetURL !== 'string' || targetURL === '' ) {
|
2014-11-16 14:09:28 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
// extension pages
|
2014-11-16 20:04:37 +01:00
|
|
|
if ( /^[\w-]{2,}:/.test(targetURL) !== true ) {
|
|
|
|
targetURL = vAPI.getURL(targetURL);
|
2014-11-16 14:09:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// dealing with Chrome's asynchronous API
|
|
|
|
var wrapper = function() {
|
|
|
|
if ( details.active === undefined ) {
|
|
|
|
details.active = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
var subWrapper = function() {
|
|
|
|
var _details = {
|
2014-11-16 20:04:37 +01:00
|
|
|
url: targetURL,
|
2014-11-16 14:09:28 +01:00
|
|
|
active: !!details.active
|
2014-11-15 19:15:11 +01:00
|
|
|
};
|
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
if ( details.tabId ) {
|
|
|
|
// update doesn't accept index, must use move
|
2015-01-21 14:59:23 +01:00
|
|
|
chrome.tabs.update(parseInt(details.tabId, 10), _details, function(tab) {
|
2014-11-16 14:09:28 +01:00
|
|
|
// if the tab doesn't exist
|
|
|
|
if ( vAPI.lastError() ) {
|
|
|
|
chrome.tabs.create(_details);
|
|
|
|
} else if ( details.index !== undefined ) {
|
|
|
|
chrome.tabs.move(tab.id, {index: details.index});
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
|
|
|
});
|
2014-11-16 14:09:28 +01:00
|
|
|
} else {
|
|
|
|
if ( details.index !== undefined ) {
|
|
|
|
_details.index = details.index;
|
|
|
|
}
|
|
|
|
|
|
|
|
chrome.tabs.create(_details);
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
if ( details.index === -1 ) {
|
|
|
|
vAPI.tabs.get(null, function(tab) {
|
|
|
|
if ( tab ) {
|
|
|
|
details.index = tab.index + 1;
|
|
|
|
} else {
|
|
|
|
delete details.index;
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
2014-11-16 14:09:28 +01:00
|
|
|
|
|
|
|
subWrapper();
|
2014-11-15 19:15:11 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
2014-11-16 14:09:28 +01:00
|
|
|
subWrapper();
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
2014-11-16 14:09:28 +01:00
|
|
|
};
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
if ( details.select ) {
|
|
|
|
chrome.tabs.query({ currentWindow: true }, function(tabs) {
|
|
|
|
var rgxHash = /#.*/;
|
2014-11-23 18:21:06 +01:00
|
|
|
// this is questionable
|
|
|
|
var url = targetURL.replace(rgxHash, '');
|
2014-11-16 14:09:28 +01:00
|
|
|
var selected = tabs.some(function(tab) {
|
|
|
|
if ( tab.url.replace(rgxHash, '') === url ) {
|
|
|
|
chrome.tabs.update(tab.id, { active: true });
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-11-16 20:22:27 +01:00
|
|
|
if ( !selected ) {
|
2014-11-16 14:09:28 +01:00
|
|
|
wrapper();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
wrapper();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
vAPI.tabs.remove = function(tabId) {
|
|
|
|
var onTabRemoved = function() {
|
|
|
|
if ( vAPI.lastError() ) {
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
2014-11-16 14:09:28 +01:00
|
|
|
};
|
2014-12-09 21:56:17 +01:00
|
|
|
chrome.tabs.remove(parseInt(tabId, 10), onTabRemoved);
|
2014-11-16 14:09:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-01-21 14:59:23 +01:00
|
|
|
vAPI.tabs.reload = function(tabId /*, flags*/) {
|
2015-01-06 14:01:15 +01:00
|
|
|
if ( typeof tabId === 'string' ) {
|
|
|
|
tabId = parseInt(tabId, 10);
|
|
|
|
}
|
|
|
|
chrome.tabs.reload(tabId);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
vAPI.tabs.injectScript = function(tabId, details, callback) {
|
2014-11-20 04:36:06 +01:00
|
|
|
var onScriptExecuted = function() {
|
2014-11-21 02:18:33 +01:00
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=410868#c8
|
2014-11-20 04:36:06 +01:00
|
|
|
if ( chrome.runtime.lastError ) {
|
|
|
|
}
|
|
|
|
if ( typeof callback === 'function' ) {
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
};
|
2014-11-16 14:09:28 +01:00
|
|
|
if ( tabId ) {
|
2014-12-19 13:17:25 +01:00
|
|
|
tabId = parseInt(tabId, 10);
|
2014-11-20 04:50:39 +01:00
|
|
|
chrome.tabs.executeScript(tabId, details, onScriptExecuted);
|
2014-11-16 14:09:28 +01:00
|
|
|
} else {
|
2014-11-20 04:36:06 +01:00
|
|
|
chrome.tabs.executeScript(details, onScriptExecuted);
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// Must read: https://code.google.com/p/chromium/issues/detail?id=410868#c8
|
|
|
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/19
|
|
|
|
// https://github.com/gorhill/uBlock/issues/207
|
|
|
|
// Since we may be called asynchronously, the tab id may not exist
|
|
|
|
// anymore, so this ensures it does still exist.
|
|
|
|
|
2014-12-26 21:41:44 +01:00
|
|
|
vAPI.setIcon = function(tabId, iconStatus, badge) {
|
2014-12-09 21:56:17 +01:00
|
|
|
tabId = parseInt(tabId, 10);
|
2014-11-15 19:15:11 +01:00
|
|
|
var onIconReady = function() {
|
2014-11-16 03:21:13 +01:00
|
|
|
if ( vAPI.lastError() ) {
|
2014-11-15 19:15:11 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
chrome.browserAction.setBadgeText({ tabId: tabId, text: badge });
|
|
|
|
if ( badge !== '' ) {
|
2014-12-26 21:41:44 +01:00
|
|
|
chrome.browserAction.setBadgeBackgroundColor({
|
|
|
|
tabId: tabId,
|
|
|
|
color: '#666'
|
|
|
|
});
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
|
|
|
};
|
2014-12-26 21:41:44 +01:00
|
|
|
|
|
|
|
var iconPaths = iconStatus === 'on' ?
|
|
|
|
{ '19': 'img/browsericons/icon19.png', '38': 'img/browsericons/icon38.png' } :
|
|
|
|
{ '19': 'img/browsericons/icon19-off.png', '38': 'img/browsericons/icon38-off.png' };
|
|
|
|
|
|
|
|
chrome.browserAction.setIcon({ tabId: tabId, path: iconPaths }, onIconReady);
|
2014-11-15 19:15:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
vAPI.messaging = {
|
|
|
|
ports: {},
|
|
|
|
listeners: {},
|
2014-11-16 14:09:28 +01:00
|
|
|
defaultHandler: null,
|
2015-01-21 01:39:13 +01:00
|
|
|
NOOPFUNC: noopFunc,
|
2014-11-16 14:09:28 +01:00
|
|
|
UNHANDLED: 'vAPI.messaging.notHandled'
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
vAPI.messaging.listen = function(listenerName, callback) {
|
|
|
|
this.listeners[listenerName] = callback;
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-11-16 15:49:55 +01:00
|
|
|
vAPI.messaging.onPortMessage = function(request, port) {
|
|
|
|
var callback = vAPI.messaging.NOOPFUNC;
|
|
|
|
if ( request.requestId !== undefined ) {
|
|
|
|
callback = function(response) {
|
2014-11-28 19:13:56 +01:00
|
|
|
// https://github.com/gorhill/uBlock/issues/383
|
2014-11-29 04:00:45 +01:00
|
|
|
if ( vAPI.messaging.ports.hasOwnProperty(port.name) === false ) {
|
2014-11-28 19:13:56 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-11-16 15:49:55 +01:00
|
|
|
port.postMessage({
|
|
|
|
requestId: request.requestId,
|
2014-12-28 21:26:06 +01:00
|
|
|
channelName: request.channelName,
|
2014-11-16 15:49:55 +01:00
|
|
|
msg: response !== undefined ? response : null
|
|
|
|
});
|
2014-11-16 14:09:28 +01:00
|
|
|
};
|
2014-11-16 15:49:55 +01:00
|
|
|
}
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 15:49:55 +01:00
|
|
|
// Specific handler
|
2014-11-18 14:29:55 +01:00
|
|
|
var r = vAPI.messaging.UNHANDLED;
|
2014-12-28 21:26:06 +01:00
|
|
|
var listener = vAPI.messaging.listeners[request.channelName];
|
2014-11-16 15:49:55 +01:00
|
|
|
if ( typeof listener === 'function' ) {
|
|
|
|
r = listener(request.msg, port.sender, callback);
|
|
|
|
}
|
|
|
|
if ( r !== vAPI.messaging.UNHANDLED ) {
|
|
|
|
return;
|
|
|
|
}
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 15:49:55 +01:00
|
|
|
// Default handler
|
|
|
|
r = vAPI.messaging.defaultHandler(request.msg, port.sender, callback);
|
|
|
|
if ( r !== vAPI.messaging.UNHANDLED ) {
|
|
|
|
return;
|
|
|
|
}
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 15:49:55 +01:00
|
|
|
console.error('µBlock> messaging > unknown request: %o', request);
|
2014-11-18 14:35:42 +01:00
|
|
|
|
|
|
|
// Unhandled:
|
|
|
|
// Need to callback anyways in case caller expected an answer, or
|
|
|
|
// else there is a memory leak on caller's side
|
|
|
|
callback();
|
2014-11-16 15:49:55 +01:00
|
|
|
};
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 15:49:55 +01:00
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-18 14:29:55 +01:00
|
|
|
vAPI.messaging.onPortDisconnect = function(port) {
|
|
|
|
port.onDisconnect.removeListener(vAPI.messaging.onPortDisconnect);
|
2014-11-16 15:49:55 +01:00
|
|
|
port.onMessage.removeListener(vAPI.messaging.onPortMessage);
|
|
|
|
delete vAPI.messaging.ports[port.name];
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-11-18 14:29:55 +01:00
|
|
|
vAPI.messaging.onPortConnect = function(port) {
|
|
|
|
port.onDisconnect.addListener(vAPI.messaging.onPortDisconnect);
|
2014-11-16 15:49:55 +01:00
|
|
|
port.onMessage.addListener(vAPI.messaging.onPortMessage);
|
2014-11-16 14:09:28 +01:00
|
|
|
vAPI.messaging.ports[port.name] = port;
|
|
|
|
};
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
/******************************************************************************/
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
vAPI.messaging.setup = function(defaultHandler) {
|
|
|
|
// Already setup?
|
|
|
|
if ( this.defaultHandler !== null ) {
|
|
|
|
return;
|
|
|
|
}
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
if ( typeof defaultHandler !== 'function' ) {
|
2014-11-16 17:39:38 +01:00
|
|
|
defaultHandler = function(){ return vAPI.messaging.UNHANDLED; };
|
2014-11-16 15:49:55 +01:00
|
|
|
}
|
2014-11-16 14:09:28 +01:00
|
|
|
this.defaultHandler = defaultHandler;
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-18 14:29:55 +01:00
|
|
|
chrome.runtime.onConnect.addListener(this.onPortConnect);
|
2014-11-16 14:09:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
vAPI.messaging.broadcast = function(message) {
|
|
|
|
var messageWrapper = {
|
|
|
|
broadcast: true,
|
|
|
|
msg: message
|
|
|
|
};
|
2014-11-15 19:15:11 +01:00
|
|
|
|
2014-11-16 14:09:28 +01:00
|
|
|
for ( var portName in this.ports ) {
|
|
|
|
if ( this.ports.hasOwnProperty(portName) === false ) {
|
|
|
|
continue;
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
2014-11-16 14:09:28 +01:00
|
|
|
this.ports[portName].postMessage(messageWrapper);
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-01-21 01:39:13 +01:00
|
|
|
vAPI.net = {};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
vAPI.net.registerListeners = function() {
|
|
|
|
var µb = µBlock;
|
|
|
|
var µburi = µb.URI;
|
|
|
|
|
|
|
|
var normalizeRequestDetails = function(details) {
|
|
|
|
µburi.set(details.url);
|
|
|
|
|
|
|
|
details.tabId = details.tabId.toString();
|
|
|
|
details.hostname = µburi.hostnameFromURI(details.url);
|
|
|
|
|
2015-01-21 15:25:12 +01:00
|
|
|
// The rest of the function code is to normalize type
|
2015-01-21 01:39:13 +01:00
|
|
|
var type = details.type;
|
|
|
|
if ( type !== 'other' ) {
|
|
|
|
return;
|
2014-11-15 19:15:11 +01:00
|
|
|
}
|
2015-01-21 01:39:13 +01:00
|
|
|
var path = µburi.path;
|
|
|
|
var pos = path.lastIndexOf('.');
|
|
|
|
if ( pos === -1 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var ext = path.slice(pos) + '.';
|
|
|
|
if ( '.eot.ttf.otf.svg.woff.woff2.'.indexOf(ext) !== -1 ) {
|
|
|
|
details.type = 'font';
|
|
|
|
return;
|
|
|
|
}
|
2015-01-21 15:25:12 +01: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 01:39:13 +01:00
|
|
|
details.type = 'image';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=410382
|
|
|
|
if ( type === 'other' ) {
|
|
|
|
details.type = 'object';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var onBeforeRequestClient = this.onBeforeRequest.callback;
|
|
|
|
var onBeforeRequest = function(details) {
|
|
|
|
normalizeRequestDetails(details);
|
|
|
|
return onBeforeRequestClient(details);
|
|
|
|
};
|
|
|
|
chrome.webRequest.onBeforeRequest.addListener(
|
|
|
|
onBeforeRequest,
|
|
|
|
{
|
|
|
|
'urls': this.onBeforeRequest.urls || ['<all_urls>'],
|
|
|
|
'types': this.onBeforeRequest.types || []
|
|
|
|
},
|
|
|
|
this.onBeforeRequest.extra
|
|
|
|
);
|
|
|
|
|
|
|
|
chrome.webRequest.onBeforeSendHeaders.addListener(
|
|
|
|
this.onBeforeSendHeaders.callback,
|
|
|
|
{
|
|
|
|
'urls': this.onBeforeSendHeaders.urls || ['<all_urls>'],
|
|
|
|
'types': this.onBeforeSendHeaders.types || []
|
|
|
|
},
|
|
|
|
this.onBeforeSendHeaders.extra
|
|
|
|
);
|
|
|
|
|
|
|
|
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
|
|
|
|
);
|
2014-11-15 19:15:11 +01: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-12-17 14:02:37 +01: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() {
|
|
|
|
// http://code.google.com/p/chromium/issues/detail?id=410868#c11
|
|
|
|
// Need to be sure to access `vAPI.lastError()` to prevent
|
|
|
|
// spurious warnings in the console.
|
|
|
|
var scriptDone = function() {
|
|
|
|
vAPI.lastError();
|
|
|
|
};
|
|
|
|
var scriptEnd = function(tabId) {
|
|
|
|
if ( vAPI.lastError() ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
vAPI.tabs.injectScript(tabId, {
|
|
|
|
file: 'js/contentscript-end.js',
|
|
|
|
allFrames: true,
|
|
|
|
runAt: 'document_idle'
|
|
|
|
}, scriptDone);
|
|
|
|
};
|
|
|
|
var scriptStart = function(tabId) {
|
|
|
|
vAPI.tabs.injectScript(tabId, {
|
|
|
|
file: 'js/vapi-client.js',
|
|
|
|
allFrames: true,
|
|
|
|
runAt: 'document_start'
|
|
|
|
}, function(){ });
|
|
|
|
vAPI.tabs.injectScript(tabId, {
|
|
|
|
file: 'js/contentscript-start.js',
|
|
|
|
allFrames: true,
|
2014-12-31 23:26:17 +01:00
|
|
|
runAt: 'document_start'
|
2014-12-17 14:02:37 +01:00
|
|
|
}, function(){ scriptEnd(tabId); });
|
|
|
|
};
|
|
|
|
var bindToTabs = function(tabs) {
|
|
|
|
var µb = µBlock;
|
|
|
|
var i = tabs.length, tab;
|
|
|
|
while ( i-- ) {
|
|
|
|
tab = tabs[i];
|
|
|
|
µb.bindTabToPageStats(tab.id, tab.url);
|
|
|
|
// https://github.com/gorhill/uBlock/issues/129
|
|
|
|
scriptStart(tab.id);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
chrome.tabs.query({ url: 'http://*/*' }, bindToTabs);
|
|
|
|
chrome.tabs.query({ url: 'https://*/*' }, bindToTabs);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-01-14 23:45:55 +01:00
|
|
|
vAPI.punycodeHostname = function(hostname) {
|
|
|
|
return hostname;
|
|
|
|
};
|
|
|
|
|
|
|
|
vAPI.punycodeURL = function(url) {
|
|
|
|
return url;
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-11-15 19:15:11 +01:00
|
|
|
})();
|
|
|
|
|
|
|
|
/******************************************************************************/
|