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
|
|
|
|
*/
|
|
|
|
|
2015-02-14 18:16:36 +01:00
|
|
|
/* global vAPI, HTMLDocument */
|
2014-11-16 20:06:29 +01:00
|
|
|
|
2014-10-19 13:11:27 +02:00
|
|
|
/******************************************************************************/
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
// Injected into content pages
|
|
|
|
|
2015-01-02 03:14:53 +01:00
|
|
|
(function() {
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2014-10-19 13:11:27 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/464
|
2015-01-13 21:52:15 +01:00
|
|
|
if ( document instanceof HTMLDocument === false ) {
|
2015-01-23 17:32:49 +01:00
|
|
|
//console.debug('contentscript-end.js > not a HTLMDocument');
|
2015-05-09 00:28:01 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// I've seen this happens on Firefox
|
|
|
|
if ( window.location === null ) {
|
|
|
|
return;
|
2015-01-13 21:52:15 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 01:10:03 +02:00
|
|
|
// This can happen
|
2015-04-08 01:34:22 +02:00
|
|
|
if ( !vAPI ) {
|
2015-01-23 17:32:49 +01:00
|
|
|
//console.debug('contentscript-end.js > vAPI not found');
|
2015-01-13 21:52:15 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/587
|
2015-01-23 17:32:49 +01:00
|
|
|
// Pointless to execute without the start script having done its job.
|
|
|
|
if ( !vAPI.contentscriptStartInjected ) {
|
2015-01-13 21:52:15 +01:00
|
|
|
return;
|
2014-10-17 21:44:19 +02:00
|
|
|
}
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/456
|
2015-01-02 02:58:19 +01:00
|
|
|
// Already injected?
|
2015-01-02 03:14:53 +01:00
|
|
|
if ( vAPI.contentscriptEndInjected ) {
|
2015-01-23 17:32:49 +01:00
|
|
|
//console.debug('contentscript-end.js > content script already injected');
|
2015-01-02 02:58:19 +01:00
|
|
|
return;
|
|
|
|
}
|
2015-01-02 03:14:53 +01:00
|
|
|
vAPI.contentscriptEndInjected = true;
|
2015-04-05 18:03:14 +02:00
|
|
|
vAPI.styles = vAPI.styles || [];
|
2015-01-02 02:58:19 +01:00
|
|
|
|
2014-10-19 13:11:27 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-10-17 21:44:19 +02:00
|
|
|
var messager = vAPI.messaging.channel('contentscript-end.js');
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2015-04-08 01:10:03 +02:00
|
|
|
// https://github.com/gorhill/uMatrix/issues/144
|
2015-04-08 01:34:22 +02:00
|
|
|
vAPI.shutdown.add(function() {
|
2015-04-08 01:10:03 +02:00
|
|
|
messager.close();
|
|
|
|
});
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-06-24 00:42:43 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/789
|
2015-02-14 18:16:36 +01:00
|
|
|
// Be sure that specific cosmetic filters are still applied.
|
|
|
|
// Executed once, then flushed from memory.
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
// Were there specific cosmetic filters?
|
2015-02-14 18:27:33 +01:00
|
|
|
if ( vAPI.specificHideStyle instanceof HTMLStyleElement === false ) {
|
2015-02-14 18:16:36 +01:00
|
|
|
return;
|
|
|
|
}
|
2015-02-14 18:32:14 +01:00
|
|
|
// Is our style tag still in the DOM? (the guess is whatever parent there
|
|
|
|
// is, it is in the DOM)
|
|
|
|
if ( vAPI.specificHideStyle.parentNode !== null ) {
|
2015-02-14 18:16:36 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Put it back
|
|
|
|
var parent = document.head || document.documentElement;
|
|
|
|
if ( parent ) {
|
2015-02-14 18:27:33 +01:00
|
|
|
parent.appendChild(vAPI.specificHideStyle);
|
2015-02-14 18:16:36 +01:00
|
|
|
}
|
|
|
|
})();
|
|
|
|
|
2015-03-29 18:13:28 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/7
|
2015-03-29 18:13:28 +02:00
|
|
|
|
|
|
|
var uBlockCollapser = (function() {
|
|
|
|
var timer = null;
|
|
|
|
var requestId = 1;
|
|
|
|
var newRequests = [];
|
|
|
|
var pendingRequests = {};
|
|
|
|
var pendingRequestCount = 0;
|
|
|
|
var srcProps = {
|
|
|
|
'embed': 'src',
|
|
|
|
'iframe': 'src',
|
|
|
|
'img': 'src',
|
|
|
|
'object': 'data'
|
|
|
|
};
|
|
|
|
|
|
|
|
var PendingRequest = function(target, tagName, attr) {
|
|
|
|
this.id = requestId++;
|
|
|
|
this.target = target;
|
|
|
|
this.tagName = tagName;
|
|
|
|
this.attr = attr;
|
|
|
|
pendingRequests[this.id] = this;
|
|
|
|
pendingRequestCount += 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Because a while ago I have observed constructors are faster than
|
|
|
|
// literal object instanciations.
|
|
|
|
var BouncingRequest = function(id, tagName, url) {
|
|
|
|
this.id = id;
|
|
|
|
this.tagName = tagName;
|
|
|
|
this.url = url;
|
|
|
|
this.collapse = false;
|
|
|
|
};
|
|
|
|
|
2015-04-08 01:10:03 +02:00
|
|
|
var onProcessed = function(response) {
|
|
|
|
// https://github.com/gorhill/uMatrix/issues/144
|
|
|
|
if ( response.shutdown ) {
|
2015-04-08 01:34:22 +02:00
|
|
|
vAPI.shutdown.exec();
|
2015-04-08 01:10:03 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var requests = response.result;
|
2015-03-29 18:13:28 +02:00
|
|
|
if ( requests === null || Array.isArray(requests) === false ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var selectors = [];
|
|
|
|
var i = requests.length;
|
|
|
|
var request, entry, target, value;
|
|
|
|
while ( i-- ) {
|
|
|
|
request = requests[i];
|
|
|
|
if ( pendingRequests.hasOwnProperty(request.id) === false ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
entry = pendingRequests[request.id];
|
|
|
|
delete pendingRequests[request.id];
|
|
|
|
pendingRequestCount -= 1;
|
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/869
|
2015-03-29 18:13:28 +02:00
|
|
|
if ( !request.collapse ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
target = entry.target;
|
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/399
|
2015-03-29 18:13:28 +02:00
|
|
|
// Never remove elements from the DOM, just hide them
|
|
|
|
target.style.setProperty('display', 'none', 'important');
|
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/1048
|
2015-03-29 18:13:28 +02:00
|
|
|
// Use attribute to construct CSS rule
|
|
|
|
if ( value = target.getAttribute(entry.attr) ) {
|
|
|
|
selectors.push(entry.tagName + '[' + entry.attr + '="' + value + '"]');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( selectors.length !== 0 ) {
|
|
|
|
messager.send({
|
2015-04-25 13:28:35 +02:00
|
|
|
what: 'cosmeticFiltersInjected',
|
2015-03-29 18:13:28 +02:00
|
|
|
type: 'net',
|
|
|
|
hostname: window.location.hostname,
|
|
|
|
selectors: selectors
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// Renew map: I believe that even if all properties are deleted, an
|
|
|
|
// object will still use more memory than a brand new one.
|
|
|
|
if ( pendingRequestCount === 0 ) {
|
|
|
|
pendingRequests = {};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var send = function() {
|
|
|
|
timer = null;
|
|
|
|
messager.send({
|
|
|
|
what: 'filterRequests',
|
|
|
|
pageURL: window.location.href,
|
|
|
|
pageHostname: window.location.hostname,
|
|
|
|
requests: newRequests
|
|
|
|
}, onProcessed);
|
|
|
|
newRequests = [];
|
|
|
|
};
|
|
|
|
|
|
|
|
var process = function(delay) {
|
|
|
|
if ( newRequests.length === 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ( delay === 0 ) {
|
|
|
|
clearTimeout(timer);
|
|
|
|
send();
|
|
|
|
} else if ( timer === null ) {
|
|
|
|
timer = setTimeout(send, delay || 20);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// If needed eventually, we could listen to `src` attribute changes
|
|
|
|
// for iframes.
|
|
|
|
|
|
|
|
var add = function(target) {
|
|
|
|
var tagName = target.localName;
|
|
|
|
var prop = srcProps[tagName];
|
|
|
|
if ( prop === undefined ) {
|
|
|
|
return;
|
|
|
|
}
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/174
|
2015-03-29 18:13:28 +02:00
|
|
|
// Do not remove fragment from src URL
|
|
|
|
var src = target[prop];
|
|
|
|
if ( typeof src !== 'string' || src === '' ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ( src.lastIndexOf('http', 0) !== 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var req = new PendingRequest(target, tagName, prop);
|
|
|
|
newRequests.push(new BouncingRequest(req.id, tagName, src));
|
|
|
|
};
|
|
|
|
|
2015-05-02 01:06:52 +02:00
|
|
|
var iframeSourceModified = function(mutations) {
|
|
|
|
var i = mutations.length;
|
|
|
|
while ( i-- ) {
|
|
|
|
addIFrame(mutations[i].target, true);
|
|
|
|
}
|
|
|
|
process();
|
|
|
|
};
|
|
|
|
var iframeSourceObserver = new MutationObserver(iframeSourceModified);
|
|
|
|
var iframeSourceObserverOptions = {
|
|
|
|
attributes: true,
|
|
|
|
attributeFilter: [ 'src' ]
|
|
|
|
};
|
|
|
|
|
|
|
|
var addIFrame = function(iframe, dontObserve) {
|
|
|
|
// https://github.com/gorhill/uBlock/issues/162
|
|
|
|
// Be prepared to deal with possible change of src attribute.
|
|
|
|
if ( dontObserve !== true ) {
|
|
|
|
iframeSourceObserver.observe(iframe, iframeSourceObserverOptions);
|
|
|
|
}
|
|
|
|
|
2015-03-29 18:13:28 +02:00
|
|
|
var src = iframe.src;
|
|
|
|
if ( src === '' || typeof src !== 'string' ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ( src.lastIndexOf('http', 0) !== 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var req = new PendingRequest(iframe, 'iframe', 'src');
|
|
|
|
newRequests.push(new BouncingRequest(req.id, 'iframe', src));
|
|
|
|
};
|
|
|
|
|
|
|
|
var iframesFromNode = function(node) {
|
|
|
|
if ( node.localName === 'iframe' ) {
|
2015-03-29 18:16:34 +02:00
|
|
|
addIFrame(node);
|
2015-03-29 18:13:28 +02:00
|
|
|
}
|
|
|
|
var iframes = node.querySelectorAll('iframe');
|
|
|
|
var i = iframes.length;
|
|
|
|
while ( i-- ) {
|
|
|
|
addIFrame(iframes[i]);
|
|
|
|
}
|
|
|
|
process();
|
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
add: add,
|
|
|
|
addIFrame: addIFrame,
|
|
|
|
iframesFromNode: iframesFromNode,
|
|
|
|
process: process
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2015-02-14 18:16:36 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// Cosmetic filters
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2014-07-30 14:05:00 +02:00
|
|
|
(function() {
|
2014-12-19 20:00:46 +01:00
|
|
|
if ( vAPI.skipCosmeticFiltering ) {
|
2015-04-08 01:10:03 +02:00
|
|
|
//console.debug('Abort cosmetic filtering');
|
2014-12-19 20:00:46 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-04-08 01:10:03 +02:00
|
|
|
//console.debug('Starts cosmetic filtering');
|
|
|
|
|
2015-03-02 02:26:33 +01:00
|
|
|
//var timer = window.performance || Date;
|
|
|
|
//var tStart = timer.now();
|
2015-03-02 01:25:36 +01:00
|
|
|
|
2014-07-02 18:02:29 +02:00
|
|
|
var queriedSelectors = {};
|
2015-01-01 05:09:22 +01:00
|
|
|
var injectedSelectors = {};
|
2015-03-02 01:25:36 +01:00
|
|
|
var lowGenericSelectors = [];
|
2014-08-12 18:19:54 +02:00
|
|
|
var highGenerics = null;
|
|
|
|
var contextNodes = [document];
|
2014-08-14 19:59:37 +02:00
|
|
|
var nullArray = { push: function(){} };
|
2014-07-02 18:02:29 +02:00
|
|
|
|
2015-01-01 14:09:44 +01:00
|
|
|
var retrieveGenericSelectors = function() {
|
2015-03-02 01:43:42 +01:00
|
|
|
if ( lowGenericSelectors.length !== 0 || highGenerics === null ) {
|
2015-03-02 01:25:36 +01:00
|
|
|
//console.log('µBlock> ABP cosmetic filters: retrieving CSS rules using %d selectors', lowGenericSelectors.length);
|
2015-01-01 14:09:44 +01:00
|
|
|
messager.send({
|
|
|
|
what: 'retrieveGenericCosmeticSelectors',
|
|
|
|
pageURL: window.location.href,
|
2015-03-02 01:25:36 +01:00
|
|
|
selectors: lowGenericSelectors,
|
2015-03-13 22:05:28 +01:00
|
|
|
firstSurvey: highGenerics === null
|
2015-01-01 14:09:44 +01:00
|
|
|
},
|
|
|
|
retrieveHandler
|
|
|
|
);
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/452
|
2015-03-13 22:05:28 +01:00
|
|
|
retrieveHandler = nextRetrieveHandler;
|
2015-01-01 14:09:44 +01:00
|
|
|
} else {
|
2015-03-13 22:05:28 +01:00
|
|
|
nextRetrieveHandler(null);
|
2015-01-01 14:09:44 +01:00
|
|
|
}
|
2015-03-02 01:25:36 +01:00
|
|
|
lowGenericSelectors = [];
|
2015-01-01 05:09:22 +01:00
|
|
|
};
|
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/452
|
2015-02-16 18:17:26 +01:00
|
|
|
// This needs to be executed *after* the response from our query is
|
2015-01-01 05:09:22 +01:00
|
|
|
// received, not at `DOMContentLoaded` time, or else there is a good
|
|
|
|
// likeliness to outrun contentscript-start.js, which may still be waiting
|
|
|
|
// on a response from its own query.
|
2015-01-01 14:09:44 +01:00
|
|
|
var firstRetrieveHandler = function(response) {
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/158
|
2014-11-16 20:06:29 +01:00
|
|
|
// Ensure injected styles are enforced
|
|
|
|
// rhill 2014-11-16: not sure this is needed anymore. Test case in
|
|
|
|
// above issue was fine without the line below..
|
2014-11-27 12:41:28 +01:00
|
|
|
var selectors = vAPI.hideCosmeticFilters;
|
|
|
|
if ( typeof selectors === 'object' ) {
|
2015-01-01 05:09:22 +01:00
|
|
|
injectedSelectors = selectors;
|
2015-03-28 16:09:36 +01:00
|
|
|
hideElements(Object.keys(selectors));
|
2014-06-26 00:44:35 +02:00
|
|
|
}
|
2014-11-26 20:26:33 +01:00
|
|
|
// Add exception filters into injected filters collection, in order
|
|
|
|
// to force them to be seen as "already injected".
|
2014-11-27 12:41:28 +01:00
|
|
|
selectors = vAPI.donthideCosmeticFilters;
|
|
|
|
if ( typeof selectors === 'object' ) {
|
2015-01-01 13:46:33 +01:00
|
|
|
for ( var selector in selectors ) {
|
2014-11-27 12:41:28 +01:00
|
|
|
if ( selectors.hasOwnProperty(selector) ) {
|
|
|
|
injectedSelectors[selector] = true;
|
|
|
|
}
|
2014-11-26 20:26:33 +01:00
|
|
|
}
|
|
|
|
}
|
2015-03-13 22:05:28 +01:00
|
|
|
// Flush dead code from memory
|
2015-01-01 14:09:44 +01:00
|
|
|
firstRetrieveHandler = null;
|
|
|
|
|
2015-03-13 22:05:28 +01:00
|
|
|
// These are sent only once
|
2015-04-08 01:10:03 +02:00
|
|
|
var result = response && response.result;
|
|
|
|
if ( result ) {
|
|
|
|
if ( result.highGenerics ) {
|
|
|
|
highGenerics = result.highGenerics;
|
2015-03-13 22:05:28 +01:00
|
|
|
}
|
2015-04-08 01:10:03 +02:00
|
|
|
if ( result.donthide ) {
|
|
|
|
processLowGenerics(result.donthide, nullArray);
|
2015-03-13 22:05:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nextRetrieveHandler(response);
|
2014-07-02 18:02:29 +02:00
|
|
|
};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2015-04-05 18:03:14 +02:00
|
|
|
var nextRetrieveHandler = function(response) {
|
2015-04-08 01:10:03 +02:00
|
|
|
// https://github.com/gorhill/uMatrix/issues/144
|
|
|
|
if ( response && response.shutdown ) {
|
2015-04-08 01:34:22 +02:00
|
|
|
vAPI.shutdown.exec();
|
2015-04-08 01:10:03 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-02 02:26:33 +01:00
|
|
|
//var tStart = timer.now();
|
2014-08-12 18:19:54 +02:00
|
|
|
//console.debug('µBlock> contextNodes = %o', contextNodes);
|
2015-04-08 01:10:03 +02:00
|
|
|
var result = response && response.result;
|
2014-08-12 18:19:54 +02:00
|
|
|
var hideSelectors = [];
|
2015-04-08 01:10:03 +02:00
|
|
|
|
|
|
|
if ( result && result.hide.length ) {
|
|
|
|
processLowGenerics(result.hide, hideSelectors);
|
2014-08-12 18:19:54 +02:00
|
|
|
}
|
|
|
|
if ( highGenerics ) {
|
|
|
|
if ( highGenerics.hideLowCount ) {
|
|
|
|
processHighLowGenerics(highGenerics.hideLow, hideSelectors);
|
|
|
|
}
|
|
|
|
if ( highGenerics.hideMediumCount ) {
|
|
|
|
processHighMediumGenerics(highGenerics.hideMedium, hideSelectors);
|
|
|
|
}
|
|
|
|
if ( highGenerics.hideHighCount ) {
|
2014-09-17 01:16:18 +02:00
|
|
|
processHighHighGenericsAsync();
|
2014-08-12 18:19:54 +02:00
|
|
|
}
|
|
|
|
}
|
2015-04-25 14:27:27 +02:00
|
|
|
if ( hideSelectors.length !== 0 ) {
|
2014-09-17 01:16:18 +02:00
|
|
|
addStyleTag(hideSelectors);
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
2014-08-12 18:19:54 +02:00
|
|
|
contextNodes.length = 0;
|
2015-03-02 02:26:33 +01:00
|
|
|
//console.debug('%f: uBlock: CSS injection time', timer.now() - tStart);
|
2014-07-02 18:02:29 +02:00
|
|
|
};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2015-01-01 14:09:44 +01:00
|
|
|
var retrieveHandler = firstRetrieveHandler;
|
|
|
|
|
2014-10-17 21:44:19 +02:00
|
|
|
// Ensure elements matching a set of selectors are visually removed
|
2014-09-17 01:16:18 +02:00
|
|
|
// from the page, by:
|
|
|
|
// - Modifying the style property on the elements themselves
|
|
|
|
// - Injecting a style tag
|
|
|
|
|
|
|
|
var addStyleTag = function(selectors) {
|
2015-04-25 13:28:35 +02:00
|
|
|
var selectorStr = selectors.join(',\n');
|
2014-09-17 01:16:18 +02:00
|
|
|
var style = document.createElement('style');
|
|
|
|
// The linefeed before the style block is very important: do no remove!
|
2015-03-28 16:09:36 +01:00
|
|
|
style.appendChild(document.createTextNode(selectorStr + '\n{display:none !important;}'));
|
2014-09-17 01:16:18 +02:00
|
|
|
var parent = document.body || document.documentElement;
|
|
|
|
if ( parent ) {
|
|
|
|
parent.appendChild(style);
|
2015-04-05 18:03:14 +02:00
|
|
|
vAPI.styles.push(style);
|
2014-09-17 01:16:18 +02:00
|
|
|
}
|
2015-04-05 18:03:14 +02:00
|
|
|
hideElements(selectorStr);
|
2014-10-17 21:44:19 +02:00
|
|
|
messager.send({
|
2015-04-25 13:28:35 +02:00
|
|
|
what: 'cosmeticFiltersInjected',
|
2014-09-17 01:16:18 +02:00
|
|
|
type: 'cosmetic',
|
|
|
|
hostname: window.location.hostname,
|
|
|
|
selectors: selectors
|
|
|
|
});
|
|
|
|
//console.debug('µBlock> generic cosmetic filters: injecting %d CSS rules:', selectors.length, text);
|
|
|
|
};
|
|
|
|
|
2014-08-17 22:07:42 +02:00
|
|
|
var hideElements = function(selectors) {
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/207
|
2014-09-04 02:14:55 +02:00
|
|
|
// Do not call querySelectorAll() using invalid CSS selectors
|
|
|
|
if ( selectors.length === 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
2014-07-02 18:02:29 +02:00
|
|
|
if ( document.body === null ) {
|
|
|
|
return;
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/158
|
2014-08-17 22:07:42 +02:00
|
|
|
// Using CSSStyleDeclaration.setProperty is more reliable
|
2014-07-02 18:02:29 +02:00
|
|
|
var elems = document.querySelectorAll(selectors);
|
|
|
|
var i = elems.length;
|
|
|
|
while ( i-- ) {
|
2014-08-17 22:07:42 +02:00
|
|
|
elems[i].style.setProperty('display', 'none', 'important');
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
2014-07-02 18:02:29 +02:00
|
|
|
};
|
|
|
|
|
2014-09-17 01:16:18 +02:00
|
|
|
// Extract and return the staged nodes which (may) match the selectors.
|
|
|
|
|
2014-08-12 18:19:54 +02:00
|
|
|
var selectNodes = function(selector) {
|
|
|
|
var targetNodes = [];
|
|
|
|
var i = contextNodes.length;
|
|
|
|
var node, nodeList, j;
|
|
|
|
var doc = document;
|
|
|
|
while ( i-- ) {
|
|
|
|
node = contextNodes[i];
|
|
|
|
if ( node === doc ) {
|
|
|
|
return doc.querySelectorAll(selector);
|
|
|
|
}
|
|
|
|
targetNodes.push(node);
|
|
|
|
nodeList = node.querySelectorAll(selector);
|
|
|
|
j = nodeList.length;
|
|
|
|
while ( j-- ) {
|
|
|
|
targetNodes.push(nodeList[j]);
|
|
|
|
}
|
2014-07-04 22:47:34 +02:00
|
|
|
}
|
2014-08-12 18:19:54 +02:00
|
|
|
return targetNodes;
|
2014-07-04 22:47:34 +02:00
|
|
|
};
|
|
|
|
|
2014-09-17 01:16:18 +02:00
|
|
|
// Low generics:
|
|
|
|
// - [id]
|
|
|
|
// - [class]
|
|
|
|
|
2014-08-12 18:19:54 +02:00
|
|
|
var processLowGenerics = function(generics, out) {
|
|
|
|
var i = generics.length;
|
|
|
|
var selector;
|
|
|
|
while ( i-- ) {
|
|
|
|
selector = generics[i];
|
2015-01-01 05:09:22 +01:00
|
|
|
if ( injectedSelectors.hasOwnProperty(selector) ) {
|
2014-08-12 18:19:54 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
injectedSelectors[selector] = true;
|
2014-08-14 19:59:37 +02:00
|
|
|
out.push(selector);
|
2014-07-04 22:47:34 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-09-17 01:16:18 +02:00
|
|
|
// High-low generics:
|
|
|
|
// - [alt="..."]
|
|
|
|
// - [title="..."]
|
|
|
|
|
2014-08-12 18:19:54 +02:00
|
|
|
var processHighLowGenerics = function(generics, out) {
|
|
|
|
var attrs = ['title', 'alt'];
|
2014-08-14 02:03:55 +02:00
|
|
|
var attr, attrValue, nodeList, iNode, node;
|
|
|
|
var selector;
|
2014-08-12 18:19:54 +02:00
|
|
|
while ( attr = attrs.pop() ) {
|
|
|
|
nodeList = selectNodes('[' + attr + ']');
|
|
|
|
iNode = nodeList.length;
|
|
|
|
while ( iNode-- ) {
|
|
|
|
node = nodeList[iNode];
|
|
|
|
attrValue = node.getAttribute(attr);
|
|
|
|
if ( !attrValue ) { continue; }
|
2015-01-02 01:09:40 +01:00
|
|
|
// Candidate 1 = generic form
|
2015-01-02 01:16:02 +01:00
|
|
|
// If generic form is injected, no need to process the specific
|
2015-01-02 01:09:40 +01:00
|
|
|
// form, as the generic will affect all related specific forms
|
2014-08-12 18:19:54 +02:00
|
|
|
selector = '[' + attr + '="' + attrValue + '"]';
|
2015-01-02 01:09:40 +01:00
|
|
|
if ( generics.hasOwnProperty(selector) ) {
|
2015-01-01 05:09:22 +01:00
|
|
|
if ( injectedSelectors.hasOwnProperty(selector) === false ) {
|
2014-08-14 02:03:55 +02:00
|
|
|
injectedSelectors[selector] = true;
|
2014-08-14 19:59:37 +02:00
|
|
|
out.push(selector);
|
2015-01-02 01:09:40 +01:00
|
|
|
continue;
|
2014-08-12 18:19:54 +02:00
|
|
|
}
|
|
|
|
}
|
2015-01-02 01:09:40 +01:00
|
|
|
// Candidate 2 = specific form
|
2015-03-29 18:13:28 +02:00
|
|
|
selector = node.localName + selector;
|
2015-01-02 01:09:40 +01:00
|
|
|
if ( generics.hasOwnProperty(selector) ) {
|
2015-01-01 05:09:22 +01:00
|
|
|
if ( injectedSelectors.hasOwnProperty(selector) === false ) {
|
2014-08-14 02:03:55 +02:00
|
|
|
injectedSelectors[selector] = true;
|
2014-08-14 19:59:37 +02:00
|
|
|
out.push(selector);
|
2014-08-12 18:19:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-04 22:47:34 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-09-17 01:16:18 +02:00
|
|
|
// High-medium generics:
|
|
|
|
// - [href^="http"]
|
|
|
|
|
2014-08-12 18:19:54 +02:00
|
|
|
var processHighMediumGenerics = function(generics, out) {
|
|
|
|
var nodeList = selectNodes('a[href^="http"]');
|
|
|
|
var iNode = nodeList.length;
|
2014-08-14 02:03:55 +02:00
|
|
|
var node, href, pos, hash, selectors, selector, iSelector;
|
2014-08-12 18:19:54 +02:00
|
|
|
while ( iNode-- ) {
|
|
|
|
node = nodeList[iNode];
|
|
|
|
href = node.getAttribute('href');
|
|
|
|
if ( !href ) { continue; }
|
|
|
|
pos = href.indexOf('://');
|
|
|
|
if ( pos === -1 ) { continue; }
|
|
|
|
hash = href.slice(pos + 3, pos + 11);
|
2014-08-14 02:03:55 +02:00
|
|
|
selectors = generics[hash];
|
|
|
|
if ( selectors === undefined ) { continue; }
|
|
|
|
iSelector = selectors.length;
|
|
|
|
while ( iSelector-- ) {
|
|
|
|
selector = selectors[iSelector];
|
2015-01-01 05:09:22 +01:00
|
|
|
if ( injectedSelectors.hasOwnProperty(selector) === false ) {
|
2014-08-14 02:03:55 +02:00
|
|
|
injectedSelectors[selector] = true;
|
2014-08-14 19:59:37 +02:00
|
|
|
out.push(selector);
|
2014-08-14 02:03:55 +02:00
|
|
|
}
|
2014-07-02 18:02:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-10-17 21:44:19 +02:00
|
|
|
// High-high generics are *very costly* to process, so we will coalesce
|
2014-09-17 01:16:18 +02:00
|
|
|
// requests to process high-high generics into as few requests as possible.
|
|
|
|
// The gain is *significant* on bloated pages.
|
|
|
|
|
2015-03-02 16:54:15 +01:00
|
|
|
var processHighHighGenericsMisses = 8;
|
2014-09-17 01:16:18 +02:00
|
|
|
var processHighHighGenericsTimer = null;
|
|
|
|
|
|
|
|
var processHighHighGenerics = function() {
|
|
|
|
processHighHighGenericsTimer = null;
|
2015-03-13 17:26:54 +01:00
|
|
|
if ( highGenerics.hideHigh === '' ) {
|
|
|
|
return;
|
|
|
|
}
|
2015-03-02 01:25:36 +01:00
|
|
|
if ( injectedSelectors.hasOwnProperty('{{highHighGenerics}}') ) {
|
|
|
|
return;
|
|
|
|
}
|
2015-03-02 02:26:33 +01:00
|
|
|
//var tStart = timer.now();
|
2015-03-02 01:54:17 +01:00
|
|
|
if ( document.querySelector(highGenerics.hideHigh) === null ) {
|
2015-03-02 02:26:33 +01:00
|
|
|
//console.debug('%f: high-high generic test time', timer.now() - tStart);
|
2015-03-02 16:54:15 +01:00
|
|
|
processHighHighGenericsMisses -= 1;
|
2015-03-02 02:26:33 +01:00
|
|
|
// Too many misses for these nagging highly generic CSS rules,
|
|
|
|
// so we will just skip them from now on.
|
2015-03-02 16:54:15 +01:00
|
|
|
if ( processHighHighGenericsMisses === 0 ) {
|
2015-03-02 02:26:33 +01:00
|
|
|
injectedSelectors['{{highHighGenerics}}'] = true;
|
2015-03-06 16:31:07 +01:00
|
|
|
//console.debug('high-high generic: apparently not needed...');
|
2015-03-02 02:26:33 +01:00
|
|
|
}
|
2015-03-02 01:25:36 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-08-14 02:03:55 +02:00
|
|
|
injectedSelectors['{{highHighGenerics}}'] = true;
|
2014-10-17 21:44:19 +02:00
|
|
|
// We need to filter out possible exception cosmetic filters from
|
2014-09-17 01:16:18 +02:00
|
|
|
// high-high generics selectors.
|
|
|
|
var selectors = highGenerics.hideHigh.split(',\n');
|
|
|
|
var i = selectors.length;
|
2014-08-14 02:03:55 +02:00
|
|
|
var selector;
|
2014-09-17 01:16:18 +02:00
|
|
|
while ( i-- ) {
|
|
|
|
selector = selectors[i];
|
|
|
|
if ( injectedSelectors.hasOwnProperty(selector) ) {
|
|
|
|
selectors.splice(i, 1);
|
|
|
|
} else {
|
2014-08-14 02:03:55 +02:00
|
|
|
injectedSelectors[selector] = true;
|
2014-07-02 18:02:29 +02:00
|
|
|
}
|
|
|
|
}
|
2014-09-17 01:16:18 +02:00
|
|
|
if ( selectors.length !== 0 ) {
|
|
|
|
addStyleTag(selectors);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var processHighHighGenericsAsync = function() {
|
|
|
|
if ( processHighHighGenericsTimer !== null ) {
|
|
|
|
clearTimeout(processHighHighGenericsTimer);
|
|
|
|
}
|
|
|
|
processHighHighGenericsTimer = setTimeout(processHighHighGenerics, 300);
|
2014-07-02 18:02:29 +02:00
|
|
|
};
|
|
|
|
|
2014-09-17 01:16:18 +02:00
|
|
|
// Extract all ids: these will be passed to the cosmetic filtering
|
|
|
|
// engine, and in return we will obtain only the relevant CSS selectors.
|
|
|
|
|
2014-07-20 21:00:26 +02:00
|
|
|
var idsFromNodeList = function(nodes) {
|
2014-07-02 18:02:29 +02:00
|
|
|
if ( !nodes || !nodes.length ) {
|
|
|
|
return;
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
2014-07-02 18:02:29 +02:00
|
|
|
var qq = queriedSelectors;
|
2015-03-02 01:25:36 +01:00
|
|
|
var ll = lowGenericSelectors;
|
2014-07-20 21:00:26 +02:00
|
|
|
var node, v;
|
2014-07-02 18:02:29 +02:00
|
|
|
var i = nodes.length;
|
|
|
|
while ( i-- ) {
|
|
|
|
node = nodes[i];
|
2014-07-20 21:00:26 +02:00
|
|
|
if ( node.nodeType !== 1 ) { continue; }
|
2014-07-02 18:02:29 +02:00
|
|
|
// id
|
2014-07-09 07:53:49 +02:00
|
|
|
v = nodes[i].id;
|
2014-07-20 21:00:26 +02:00
|
|
|
if ( typeof v !== 'string' ) { continue; }
|
2014-07-09 07:53:49 +02:00
|
|
|
v = v.trim();
|
2014-07-20 21:00:26 +02:00
|
|
|
if ( v === '' ) { continue; }
|
|
|
|
v = '#' + v;
|
2015-03-02 01:25:36 +01:00
|
|
|
if ( qq.hasOwnProperty(v) ) { continue; }
|
|
|
|
ll.push(v);
|
2014-07-20 21:00:26 +02:00
|
|
|
qq[v] = true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-09-17 01:16:18 +02:00
|
|
|
// Extract all classes: these will be passed to the cosmetic filtering
|
|
|
|
// engine, and in return we will obtain only the relevant CSS selectors.
|
|
|
|
|
2014-07-20 21:00:26 +02:00
|
|
|
var classesFromNodeList = function(nodes) {
|
|
|
|
if ( !nodes || !nodes.length ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var qq = queriedSelectors;
|
2015-03-02 01:25:36 +01:00
|
|
|
var ll = lowGenericSelectors;
|
2014-07-20 21:00:26 +02:00
|
|
|
var node, v, vv, j;
|
|
|
|
var i = nodes.length;
|
|
|
|
while ( i-- ) {
|
|
|
|
node = nodes[i];
|
2015-04-26 07:02:35 +02:00
|
|
|
// http://jsperf.com/enumerate-classes
|
|
|
|
// Chromium: classList a bit faster than manually enumerating
|
|
|
|
// class names.
|
|
|
|
// Firefox: classList quite slower than manually enumerating
|
|
|
|
// class names.
|
2014-11-05 16:29:19 +01:00
|
|
|
vv = node.classList;
|
|
|
|
if ( typeof vv !== 'object' ) { continue; }
|
|
|
|
j = vv.length || 0;
|
2014-07-02 18:02:29 +02:00
|
|
|
while ( j-- ) {
|
2014-11-05 16:29:19 +01:00
|
|
|
v = vv[j];
|
|
|
|
if ( typeof v !== 'string' ) { continue; }
|
2014-07-02 18:02:29 +02:00
|
|
|
v = '.' + v;
|
2015-03-02 01:25:36 +01:00
|
|
|
if ( qq.hasOwnProperty(v) ) { continue; }
|
|
|
|
ll.push(v);
|
2014-07-02 18:02:29 +02:00
|
|
|
qq[v] = true;
|
|
|
|
}
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
2014-07-02 18:02:29 +02:00
|
|
|
};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2014-09-17 01:16:18 +02:00
|
|
|
// Start cosmetic filtering.
|
|
|
|
|
2015-02-14 18:16:36 +01:00
|
|
|
idsFromNodeList(document.querySelectorAll('[id]'));
|
|
|
|
classesFromNodeList(document.querySelectorAll('[class]'));
|
|
|
|
retrieveGenericSelectors();
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2015-03-02 02:26:33 +01:00
|
|
|
//console.debug('%f: uBlock: survey time', timer.now() - tStart);
|
2015-03-02 01:25:36 +01:00
|
|
|
|
2014-09-17 01:16:18 +02:00
|
|
|
// Below this point is the code which takes care to observe changes in
|
|
|
|
// the page and to add if needed relevant CSS rules as a result of the
|
|
|
|
// changes.
|
|
|
|
|
2014-07-30 14:05:00 +02:00
|
|
|
// Observe changes in the DOM only if...
|
|
|
|
// - there is a document.body
|
|
|
|
// - there is at least one `script` tag
|
|
|
|
if ( !document.body || !document.querySelector('script') ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/618
|
2015-03-29 18:13:28 +02:00
|
|
|
// Following is to observe dynamically added iframes:
|
|
|
|
// - On Firefox, the iframes fails to fire a `load` event
|
|
|
|
|
2014-08-12 18:19:54 +02:00
|
|
|
var ignoreTags = {
|
2014-08-14 19:59:37 +02:00
|
|
|
'link': true,
|
2014-08-12 18:19:54 +02:00
|
|
|
'script': true,
|
2015-03-29 18:13:28 +02:00
|
|
|
'style': true
|
2014-08-12 18:19:54 +02:00
|
|
|
};
|
|
|
|
|
2014-09-16 21:39:21 +02:00
|
|
|
// Added node lists will be cumulated here before being processed
|
|
|
|
var addedNodeLists = [];
|
|
|
|
var addedNodeListsTimer = null;
|
2015-03-29 18:13:28 +02:00
|
|
|
var collapser = uBlockCollapser;
|
2014-09-16 21:39:21 +02:00
|
|
|
|
2015-03-29 18:13:28 +02:00
|
|
|
var treeMutationObservedHandler = function() {
|
2014-08-12 18:19:54 +02:00
|
|
|
var nodeList, iNode, node;
|
2014-09-16 21:39:21 +02:00
|
|
|
while ( nodeList = addedNodeLists.pop() ) {
|
2014-08-12 18:19:54 +02:00
|
|
|
iNode = nodeList.length;
|
|
|
|
while ( iNode-- ) {
|
|
|
|
node = nodeList[iNode];
|
2014-09-24 23:41:05 +02:00
|
|
|
if ( node.nodeType !== 1 ) {
|
2014-08-12 18:19:54 +02:00
|
|
|
continue;
|
|
|
|
}
|
2015-03-29 18:13:28 +02:00
|
|
|
if ( ignoreTags.hasOwnProperty(node.localName) ) {
|
2014-08-12 18:19:54 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
contextNodes.push(node);
|
2015-03-29 18:13:28 +02:00
|
|
|
collapser.iframesFromNode(node);
|
2014-07-30 14:05:00 +02:00
|
|
|
}
|
|
|
|
}
|
2014-09-16 21:39:21 +02:00
|
|
|
addedNodeListsTimer = null;
|
2014-08-12 18:19:54 +02:00
|
|
|
if ( contextNodes.length !== 0 ) {
|
|
|
|
idsFromNodeList(selectNodes('[id]'));
|
|
|
|
classesFromNodeList(selectNodes('[class]'));
|
|
|
|
retrieveGenericSelectors();
|
2015-04-25 14:27:27 +02:00
|
|
|
|
|
|
|
// This is required: a new element could be matching an already
|
|
|
|
// injected but otherwise inactive cosmetic filter. This means
|
|
|
|
// the already injected cosmetic filter become active (has an
|
|
|
|
// effect on the document), and thus must be logged if needed.
|
|
|
|
messager.send({ what: 'cosmeticFiltersActivated' });
|
2014-07-30 14:05:00 +02:00
|
|
|
}
|
2014-07-02 18:02:29 +02:00
|
|
|
};
|
2014-08-12 18:19:54 +02:00
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/205
|
2014-09-16 21:39:21 +02:00
|
|
|
// Do not handle added node directly from within mutation observer.
|
2014-09-24 23:41:05 +02:00
|
|
|
var treeMutationObservedHandlerAsync = function(mutations) {
|
2014-09-16 21:39:21 +02:00
|
|
|
var iMutation = mutations.length;
|
|
|
|
var nodeList;
|
|
|
|
while ( iMutation-- ) {
|
2014-09-24 23:41:05 +02:00
|
|
|
nodeList = mutations[iMutation].addedNodes;
|
|
|
|
if ( nodeList.length !== 0 ) {
|
2014-09-16 21:39:21 +02:00
|
|
|
addedNodeLists.push(nodeList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( addedNodeListsTimer === null ) {
|
2015-01-01 05:09:22 +01:00
|
|
|
// I arbitrarily chose 100 ms for now:
|
2014-10-17 21:44:19 +02:00
|
|
|
// I have to compromise between the overhead of processing too few
|
2014-09-16 21:39:21 +02:00
|
|
|
// nodes too often and the delay of many nodes less often.
|
2015-03-29 18:13:28 +02:00
|
|
|
addedNodeListsTimer = setTimeout(treeMutationObservedHandler, 100);
|
2014-09-16 21:39:21 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-04-08 01:10:03 +02:00
|
|
|
//console.debug('Starts cosmetic filtering\'s mutations observer');
|
|
|
|
|
2014-07-30 14:05:00 +02:00
|
|
|
// https://github.com/gorhill/httpswitchboard/issues/176
|
2014-09-24 23:41:05 +02:00
|
|
|
var treeObserver = new MutationObserver(treeMutationObservedHandlerAsync);
|
|
|
|
treeObserver.observe(document.body, {
|
2014-07-30 14:05:00 +02:00
|
|
|
childList: true,
|
|
|
|
subtree: true
|
|
|
|
});
|
2015-04-08 01:10:03 +02:00
|
|
|
|
|
|
|
// https://github.com/gorhill/uMatrix/issues/144
|
2015-04-08 01:34:22 +02:00
|
|
|
vAPI.shutdown.add(function() {
|
2015-04-08 01:10:03 +02:00
|
|
|
treeObserver.disconnect();
|
|
|
|
if ( addedNodeListsTimer !== null ) {
|
|
|
|
clearTimeout(addedNodeListsTimer);
|
|
|
|
}
|
|
|
|
});
|
2014-07-02 18:02:29 +02:00
|
|
|
})();
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2014-08-02 17:40:27 +02:00
|
|
|
/******************************************************************************/
|
2014-06-24 00:42:43 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-09-14 22:20:40 +02:00
|
|
|
// Permanent
|
2014-06-27 23:06:42 +02:00
|
|
|
|
2015-03-29 18:13:28 +02:00
|
|
|
// Listener to collapse blocked resources.
|
|
|
|
// - Future requests not blocked yet
|
|
|
|
// - Elements dynamically added to the page
|
|
|
|
// - Elements which resource URL changes
|
2015-02-04 06:24:12 +01:00
|
|
|
|
2015-04-08 01:10:03 +02:00
|
|
|
(function() {
|
|
|
|
var onResourceFailed = function(ev) {
|
|
|
|
//console.debug('onResourceFailed(%o)', ev);
|
|
|
|
uBlockCollapser.add(ev.target);
|
|
|
|
uBlockCollapser.process();
|
|
|
|
};
|
|
|
|
document.addEventListener('error', onResourceFailed, true);
|
|
|
|
|
|
|
|
// https://github.com/gorhill/uMatrix/issues/144
|
2015-04-08 01:34:22 +02:00
|
|
|
vAPI.shutdown.add(function() {
|
2015-04-08 01:10:03 +02:00
|
|
|
document.removeEventListener('error', onResourceFailed, true);
|
|
|
|
});
|
|
|
|
})();
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-09-14 22:20:40 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/7
|
2014-09-14 22:20:40 +02:00
|
|
|
|
|
|
|
// Executed only once
|
|
|
|
|
|
|
|
(function() {
|
2015-03-29 18:13:28 +02:00
|
|
|
var collapser = uBlockCollapser;
|
|
|
|
var elems, i, elem;
|
2014-09-14 22:20:40 +02:00
|
|
|
|
2015-03-29 18:13:28 +02:00
|
|
|
elems = document.querySelectorAll('embed, object');
|
|
|
|
i = elems.length;
|
|
|
|
while ( i-- ) {
|
|
|
|
collapser.add(elems[i]);
|
|
|
|
}
|
2015-02-25 02:10:10 +01:00
|
|
|
|
2015-03-29 18:13:28 +02:00
|
|
|
elems = document.querySelectorAll('img');
|
|
|
|
i = elems.length;
|
|
|
|
while ( i-- ) {
|
|
|
|
elem = elems[i];
|
|
|
|
if ( elem.complete ) {
|
|
|
|
collapser.add(elem);
|
2015-02-25 02:10:10 +01:00
|
|
|
}
|
2015-03-29 18:13:28 +02:00
|
|
|
}
|
2015-02-25 02:10:10 +01:00
|
|
|
|
2015-03-29 18:13:28 +02:00
|
|
|
elems = document.querySelectorAll('iframe');
|
|
|
|
i = elems.length;
|
|
|
|
while ( i-- ) {
|
|
|
|
collapser.addIFrame(elems[i]);
|
2014-09-14 22:20:40 +02:00
|
|
|
}
|
2015-03-29 18:13:28 +02:00
|
|
|
collapser.process(0);
|
2014-09-14 22:20:40 +02:00
|
|
|
})();
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-09-28 20:38:17 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// To send mouse coordinates to context menu handler, as the chrome API fails
|
|
|
|
// to provide the mouse position to context menu listeners.
|
|
|
|
// This could be inserted in its own content script, but it's so simple that
|
|
|
|
// I feel it's not worth the overhead.
|
|
|
|
|
|
|
|
// Ref.: https://developer.mozilla.org/en-US/docs/Web/Events/contextmenu
|
|
|
|
|
|
|
|
(function() {
|
2015-02-16 18:17:26 +01:00
|
|
|
if ( window !== window.top ) {
|
|
|
|
return;
|
|
|
|
}
|
2014-09-28 20:38:17 +02:00
|
|
|
var onContextMenu = function(ev) {
|
2014-10-17 21:44:19 +02:00
|
|
|
messager.send({
|
2014-09-28 20:38:17 +02:00
|
|
|
what: 'contextMenuEvent',
|
|
|
|
clientX: ev.clientX,
|
|
|
|
clientY: ev.clientY
|
|
|
|
});
|
|
|
|
};
|
2014-10-17 21:44:19 +02:00
|
|
|
|
|
|
|
window.addEventListener('contextmenu', onContextMenu, true);
|
2015-04-08 01:10:03 +02:00
|
|
|
|
|
|
|
// https://github.com/gorhill/uMatrix/issues/144
|
2015-04-08 01:34:22 +02:00
|
|
|
vAPI.shutdown.add(function() {
|
2015-04-08 01:10:03 +02:00
|
|
|
document.removeEventListener('contextmenu', onContextMenu, true);
|
|
|
|
});
|
2014-09-28 20:38:17 +02:00
|
|
|
})();
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2015-01-02 03:14:53 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
})();
|
|
|
|
|
|
|
|
/******************************************************************************/
|