2014-07-13 00:32:44 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
|
|
2016-03-06 15:51:06 +00:00
|
|
|
uBlock Origin - a browser extension to block requests.
|
2018-08-15 11:58:42 +00:00
|
|
|
Copyright (C) 2014-present Raymond Hill
|
2014-07-13 00:32:44 +00: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
|
|
|
|
|
*/
|
|
|
|
|
|
2016-04-16 15:20:01 +00:00
|
|
|
/* global CSS */
|
2014-07-13 00:32:44 +00:00
|
|
|
|
2016-10-01 16:34:25 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
2014-07-13 00:32:44 +00:00
|
|
|
/******************************************************************************/
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
(async ( ) => {
|
2014-07-13 00:32:44 +00:00
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
if ( window.top !== window || typeof vAPI !== 'object' ) { return; }
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-11-04 11:32:44 +00:00
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
const epickerId = vAPI.randomToken();
|
|
|
|
|
let epickerConnectionId;
|
2017-10-21 17:43:46 +00:00
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
let pickerRoot = document.querySelector(`[${vAPI.sessionId}]`);
|
|
|
|
|
if ( pickerRoot !== null ) { return; }
|
|
|
|
|
|
|
|
|
|
let pickerBootArgs;
|
2019-11-05 17:03:48 +00:00
|
|
|
let pickerBody = null;
|
|
|
|
|
let svgOcean = null;
|
|
|
|
|
let svgIslands = null;
|
|
|
|
|
let svgRoot = null;
|
|
|
|
|
let dialog = null;
|
2014-09-28 16:05:46 +00:00
|
|
|
|
2019-11-05 17:03:48 +00:00
|
|
|
const netFilterCandidates = [];
|
|
|
|
|
const cosmeticFilterCandidates = [];
|
2014-07-13 00:32:44 +00:00
|
|
|
|
2019-11-05 17:03:48 +00:00
|
|
|
let targetElements = [];
|
|
|
|
|
let candidateElements = [];
|
|
|
|
|
let bestCandidateFilter = null;
|
2014-07-13 00:32:44 +00:00
|
|
|
|
2019-11-05 17:03:48 +00:00
|
|
|
const lastNetFilterSession = window.location.host + window.location.pathname;
|
|
|
|
|
let lastNetFilterHostname = '';
|
|
|
|
|
let lastNetFilterUnion = '';
|
2015-03-20 15:39:20 +00:00
|
|
|
|
2014-07-13 00:32:44 +00:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const safeQuerySelectorAll = function(node, selector) {
|
2015-02-16 16:21:25 +00:00
|
|
|
if ( node !== null ) {
|
|
|
|
|
try {
|
|
|
|
|
return node.querySelectorAll(selector);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
}
|
2015-02-16 16:14:37 +00:00
|
|
|
}
|
2015-02-16 16:21:25 +00:00
|
|
|
return [];
|
2015-02-16 16:14:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const getElementBoundingClientRect = function(elem) {
|
|
|
|
|
let rect = typeof elem.getBoundingClientRect === 'function'
|
|
|
|
|
? elem.getBoundingClientRect()
|
|
|
|
|
: { height: 0, left: 0, top: 0, width: 0 };
|
2015-12-07 16:09:39 +00:00
|
|
|
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/1024
|
|
|
|
|
// Try not returning an empty bounding rect.
|
2015-12-07 16:18:56 +00:00
|
|
|
if ( rect.width !== 0 && rect.height !== 0 ) {
|
|
|
|
|
return rect;
|
2015-12-07 16:09:39 +00:00
|
|
|
}
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
let left = rect.left,
|
2015-12-07 16:18:56 +00:00
|
|
|
right = rect.right,
|
|
|
|
|
top = rect.top,
|
|
|
|
|
bottom = rect.bottom;
|
2015-12-07 16:09:39 +00:00
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
for ( const child of elem.children ) {
|
|
|
|
|
rect = getElementBoundingClientRect(child);
|
2015-12-07 16:18:56 +00:00
|
|
|
if ( rect.width === 0 || rect.height === 0 ) {
|
2015-12-07 16:09:39 +00:00
|
|
|
continue;
|
|
|
|
|
}
|
2015-12-07 16:18:56 +00:00
|
|
|
if ( rect.left < left ) { left = rect.left; }
|
|
|
|
|
if ( rect.right > right ) { right = rect.right; }
|
|
|
|
|
if ( rect.top < top ) { top = rect.top; }
|
|
|
|
|
if ( rect.bottom > bottom ) { bottom = rect.bottom; }
|
2015-12-07 16:09:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
height: bottom - top,
|
|
|
|
|
left: left,
|
|
|
|
|
top: top,
|
|
|
|
|
width: right - left
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const highlightElements = function(elems, force) {
|
2014-07-14 06:14:13 +00:00
|
|
|
// To make mouse move handler more efficient
|
2014-07-13 00:32:44 +00:00
|
|
|
if ( !force && elems.length === targetElements.length ) {
|
|
|
|
|
if ( elems.length === 0 || elems[0] === targetElements[0] ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
targetElements = elems;
|
2014-10-09 14:41:20 +00:00
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const ow = pickerRoot.contentWindow.innerWidth;
|
|
|
|
|
const oh = pickerRoot.contentWindow.innerHeight;
|
|
|
|
|
const ocean = [
|
2014-07-13 00:32:44 +00:00
|
|
|
'M0 0',
|
|
|
|
|
'h', ow,
|
2015-02-09 13:03:29 +00:00
|
|
|
'v', oh,
|
2014-07-13 00:32:44 +00:00
|
|
|
'h-', ow,
|
|
|
|
|
'z'
|
|
|
|
|
];
|
2019-06-29 15:06:03 +00:00
|
|
|
const islands = [];
|
2014-11-07 11:59:01 +00:00
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
for ( let i = 0; i < elems.length; i++ ) {
|
|
|
|
|
const elem = elems[i];
|
2020-09-01 16:32:12 +00:00
|
|
|
if ( elem === pickerRoot ) { continue; }
|
2019-06-29 15:06:03 +00:00
|
|
|
const rect = getElementBoundingClientRect(elem);
|
2015-02-09 13:03:29 +00:00
|
|
|
|
|
|
|
|
// Ignore if it's not on the screen
|
|
|
|
|
if ( rect.left > ow || rect.top > oh ||
|
|
|
|
|
rect.left + rect.width < 0 || rect.top + rect.height < 0 ) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const poly = 'M' + rect.left + ' ' + rect.top +
|
2014-11-03 14:28:55 +00:00
|
|
|
'h' + rect.width +
|
|
|
|
|
'v' + rect.height +
|
|
|
|
|
'h-' + rect.width +
|
|
|
|
|
'z';
|
2014-10-11 20:43:17 +00:00
|
|
|
ocean.push(poly);
|
|
|
|
|
islands.push(poly);
|
2014-07-13 00:32:44 +00:00
|
|
|
}
|
|
|
|
|
svgOcean.setAttribute('d', ocean.join(''));
|
2014-10-23 12:12:37 +00:00
|
|
|
svgIslands.setAttribute('d', islands.join('') || 'M0 0');
|
2014-07-13 00:32:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2018-12-20 22:29:39 +00:00
|
|
|
const mergeStrings = function(urls) {
|
|
|
|
|
if ( urls.length === 0 ) { return ''; }
|
|
|
|
|
if (
|
|
|
|
|
urls.length === 1 ||
|
|
|
|
|
self.diff_match_patch instanceof Function === false
|
|
|
|
|
) {
|
|
|
|
|
return urls[0];
|
|
|
|
|
}
|
|
|
|
|
const differ = new self.diff_match_patch();
|
|
|
|
|
let merged = urls[0];
|
|
|
|
|
for ( let i = 1; i < urls.length; i++ ) {
|
|
|
|
|
// The differ works at line granularity: we insert a linefeed after
|
|
|
|
|
// each character to trick the differ to work at character granularity.
|
|
|
|
|
const diffs = differ.diff_main(
|
|
|
|
|
//urls[i].replace(/.(?=.)/g, '$&\n'),
|
|
|
|
|
//merged.replace(/.(?=.)/g, '$&\n')
|
|
|
|
|
urls[i].split('').join('\n'),
|
|
|
|
|
merged.split('').join('\n')
|
|
|
|
|
);
|
|
|
|
|
const result = [];
|
|
|
|
|
for ( const diff of diffs ) {
|
|
|
|
|
if ( diff[0] !== 0 ) {
|
|
|
|
|
result.push('*');
|
|
|
|
|
} else {
|
2019-06-25 21:09:04 +00:00
|
|
|
result.push(diff[1].replace(/\n+/g, ''));
|
2018-12-20 22:29:39 +00:00
|
|
|
}
|
2020-03-15 12:45:17 +00:00
|
|
|
merged = result.join('');
|
2018-12-20 22:29:39 +00:00
|
|
|
}
|
|
|
|
|
}
|
2020-03-15 12:45:17 +00:00
|
|
|
// Keep usage of wildcards to a sane level, too many of them can cause
|
|
|
|
|
// high overhead filters
|
|
|
|
|
merged = merged.replace(/^\*+$/, '')
|
|
|
|
|
.replace(/\*{2,}/g, '*')
|
|
|
|
|
.replace(/([^*]{1,3}\*)(?:[^*]{1,3}\*)+/g, '$1');
|
2018-12-20 22:29:39 +00:00
|
|
|
return merged;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2020-03-15 12:45:17 +00:00
|
|
|
// Remove fragment part from a URL.
|
|
|
|
|
|
|
|
|
|
const trimFragmentFromURL = function(url) {
|
|
|
|
|
const pos = url.indexOf('#');
|
|
|
|
|
return pos !== -1 ? url.slice(0, pos) : url;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2016-08-15 11:52:50 +00:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1897
|
|
|
|
|
// Ignore `data:` URI, they can't be handled by an HTTP observer.
|
|
|
|
|
|
2018-12-20 22:29:39 +00:00
|
|
|
const backgroundImageURLFromElement = function(elem) {
|
|
|
|
|
const style = window.getComputedStyle(elem);
|
|
|
|
|
const bgImg = style.backgroundImage || '';
|
|
|
|
|
const matches = /^url\((["']?)([^"']+)\1\)$/.exec(bgImg);
|
|
|
|
|
const url = matches !== null && matches.length === 3 ? matches[2] : '';
|
2020-03-15 12:45:17 +00:00
|
|
|
return url.lastIndexOf('data:', 0) === -1
|
|
|
|
|
? trimFragmentFromURL(url.slice(0, 1024))
|
|
|
|
|
: '';
|
2016-04-15 16:27:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2016-06-16 13:15:49 +00:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1725#issuecomment-226479197
|
2018-12-20 22:29:39 +00:00
|
|
|
// Limit returned string to 1024 characters.
|
|
|
|
|
// Also, return only URLs which will be seen by an HTTP observer.
|
2016-06-16 13:15:49 +00:00
|
|
|
|
2020-03-15 12:45:17 +00:00
|
|
|
const resourceURLsFromElement = function(elem) {
|
|
|
|
|
const urls = [];
|
2018-12-20 22:29:39 +00:00
|
|
|
const tagName = elem.localName;
|
|
|
|
|
const prop = netFilter1stSources[tagName];
|
2020-03-15 12:45:17 +00:00
|
|
|
if ( prop === undefined ) {
|
|
|
|
|
const url = backgroundImageURLFromElement(elem);
|
|
|
|
|
if ( url !== '' ) { urls.push(url); }
|
|
|
|
|
return urls;
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
const s = elem[prop];
|
|
|
|
|
if ( typeof s === 'string' && /^https?:\/\//.test(s) ) {
|
|
|
|
|
urls.push(trimFragmentFromURL(s.slice(0, 1024)));
|
2018-12-20 22:29:39 +00:00
|
|
|
}
|
2020-03-15 12:45:17 +00:00
|
|
|
}
|
2020-07-05 12:44:14 +00:00
|
|
|
resourceURLsFromSrcset(elem, urls);
|
|
|
|
|
return urls;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/images.html#parsing-a-srcset-attribute
|
|
|
|
|
// https://github.com/uBlockOrigin/uBlock-issues/issues/1071
|
|
|
|
|
const resourceURLsFromSrcset = function(elem, out) {
|
|
|
|
|
let srcset = elem.srcset;
|
2020-07-13 15:46:38 +00:00
|
|
|
if ( typeof srcset !== 'string' || srcset === '' ) { return; }
|
2020-07-05 12:44:14 +00:00
|
|
|
for(;;) {
|
|
|
|
|
// trim whitespace
|
|
|
|
|
srcset = srcset.trim();
|
|
|
|
|
if ( srcset.length === 0 ) { break; }
|
|
|
|
|
// abort in case of leading comma
|
|
|
|
|
if ( /^,/.test(srcset) ) { break; }
|
|
|
|
|
// collect and consume all non-whitespace characters
|
|
|
|
|
let match = /^\S+/.exec(srcset);
|
|
|
|
|
if ( match === null ) { break; }
|
|
|
|
|
srcset = srcset.slice(match.index + match[0].length);
|
|
|
|
|
let url = match[0];
|
|
|
|
|
// consume descriptor, if any
|
|
|
|
|
if ( /,$/.test(url) ) {
|
|
|
|
|
url = url.replace(/,$/, '');
|
|
|
|
|
if ( /,$/.test(url) ) { break; }
|
|
|
|
|
} else {
|
|
|
|
|
match = /^[^,]*(?:\(.+?\))?[^,]*(?:,|$)/.exec(srcset);
|
|
|
|
|
if ( match === null ) { break; }
|
|
|
|
|
srcset = srcset.slice(match.index + match[0].length);
|
2016-04-15 16:27:53 +00:00
|
|
|
}
|
2020-07-05 12:44:14 +00:00
|
|
|
const parsedURL = new URL(url, document.baseURI);
|
|
|
|
|
if ( parsedURL.pathname.length === 0 ) { continue; }
|
|
|
|
|
out.push(trimFragmentFromURL(parsedURL.href));
|
2016-04-15 16:27:53 +00:00
|
|
|
}
|
2014-07-13 00:32:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2020-03-15 12:45:17 +00:00
|
|
|
const netFilterFromUnion = function(patternIn, out) {
|
2018-12-20 22:29:39 +00:00
|
|
|
// Reset reference filter when dealing with unrelated URLs
|
2020-03-15 12:45:17 +00:00
|
|
|
const currentHostname = self.location.hostname;
|
2018-12-20 22:29:39 +00:00
|
|
|
if (
|
|
|
|
|
lastNetFilterUnion === '' ||
|
2020-03-15 12:45:17 +00:00
|
|
|
currentHostname === '' ||
|
|
|
|
|
currentHostname !== lastNetFilterHostname
|
2018-12-20 22:29:39 +00:00
|
|
|
) {
|
2020-03-15 12:45:17 +00:00
|
|
|
lastNetFilterHostname = currentHostname;
|
|
|
|
|
lastNetFilterUnion = patternIn;
|
2019-09-17 19:15:01 +00:00
|
|
|
vAPI.messaging.send('elementPicker', {
|
|
|
|
|
what: 'elementPickerEprom',
|
2020-03-15 12:45:17 +00:00
|
|
|
lastNetFilterSession,
|
|
|
|
|
lastNetFilterHostname,
|
|
|
|
|
lastNetFilterUnion,
|
2019-09-17 19:15:01 +00:00
|
|
|
});
|
2018-12-20 22:29:39 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Related URLs
|
2020-03-15 12:45:17 +00:00
|
|
|
lastNetFilterHostname = currentHostname;
|
|
|
|
|
let patternOut = mergeStrings([ patternIn, lastNetFilterUnion ]);
|
|
|
|
|
if ( patternOut !== '/*' && patternOut !== patternIn ) {
|
|
|
|
|
const filter = `||${patternOut}`;
|
2018-12-20 22:29:39 +00:00
|
|
|
if ( out.indexOf(filter) === -1 ) {
|
|
|
|
|
out.push(filter);
|
|
|
|
|
}
|
2020-03-15 12:45:17 +00:00
|
|
|
lastNetFilterUnion = patternOut;
|
2018-12-20 22:29:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Remember across element picker sessions
|
2019-09-17 19:15:01 +00:00
|
|
|
vAPI.messaging.send('elementPicker', {
|
|
|
|
|
what: 'elementPickerEprom',
|
2020-03-15 12:45:17 +00:00
|
|
|
lastNetFilterSession,
|
|
|
|
|
lastNetFilterHostname,
|
|
|
|
|
lastNetFilterUnion,
|
2019-09-17 19:15:01 +00:00
|
|
|
});
|
2018-12-20 22:29:39 +00:00
|
|
|
};
|
2015-03-19 14:13:51 +00:00
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-07-13 00:32:44 +00:00
|
|
|
// Extract the best possible net filter, i.e. as specific as possible.
|
|
|
|
|
|
2018-12-20 22:29:39 +00:00
|
|
|
const netFilterFromElement = function(elem) {
|
2018-11-06 18:11:03 +00:00
|
|
|
if ( elem === null ) { return 0; }
|
|
|
|
|
if ( elem.nodeType !== 1 ) { return 0; }
|
2020-03-15 12:45:17 +00:00
|
|
|
const urls = resourceURLsFromElement(elem);
|
|
|
|
|
if ( urls.length === 0 ) { return 0; }
|
2016-04-15 16:27:53 +00:00
|
|
|
|
2016-04-16 15:20:01 +00:00
|
|
|
if ( candidateElements.indexOf(elem) === -1 ) {
|
|
|
|
|
candidateElements.push(elem);
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-06 18:11:03 +00:00
|
|
|
const candidates = netFilterCandidates;
|
|
|
|
|
const len = candidates.length;
|
2016-04-16 15:20:01 +00:00
|
|
|
|
2020-03-15 12:45:17 +00:00
|
|
|
for ( let i = 0; i < urls.length; i++ ) {
|
|
|
|
|
urls[i] = urls[i].replace(/^https?:\/\//, '');
|
2014-09-28 16:05:46 +00:00
|
|
|
}
|
2020-03-15 12:45:17 +00:00
|
|
|
const pattern = mergeStrings(urls);
|
2015-03-19 14:13:51 +00:00
|
|
|
|
|
|
|
|
|
2016-04-16 15:20:01 +00:00
|
|
|
if ( bestCandidateFilter === null ) {
|
|
|
|
|
bestCandidateFilter = {
|
2016-04-17 14:15:01 +00:00
|
|
|
type: 'net',
|
2016-04-16 15:20:01 +00:00
|
|
|
filters: candidates,
|
|
|
|
|
slot: candidates.length
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-15 12:45:17 +00:00
|
|
|
candidates.push(`||${pattern}`);
|
2015-03-19 14:13:51 +00:00
|
|
|
|
2014-09-28 16:05:46 +00:00
|
|
|
// Suggest a less narrow filter if possible
|
2020-03-15 12:45:17 +00:00
|
|
|
const pos = pattern.indexOf('?');
|
2014-09-28 16:05:46 +00:00
|
|
|
if ( pos !== -1 ) {
|
2020-03-15 12:45:17 +00:00
|
|
|
candidates.push(`||${pattern.slice(0, pos)}`);
|
2014-09-28 16:05:46 +00:00
|
|
|
}
|
2015-03-19 14:13:51 +00:00
|
|
|
|
|
|
|
|
// Suggest a filter which is a result of combining more than one URL.
|
2020-03-15 12:45:17 +00:00
|
|
|
netFilterFromUnion(pattern, candidates);
|
2016-04-16 15:20:01 +00:00
|
|
|
|
|
|
|
|
return candidates.length - len;
|
2014-07-13 00:32:44 +00:00
|
|
|
};
|
|
|
|
|
|
2018-12-20 22:29:39 +00:00
|
|
|
const netFilter1stSources = {
|
2016-04-15 16:27:53 +00:00
|
|
|
'audio': 'src',
|
2015-02-10 15:50:47 +00:00
|
|
|
'embed': 'src',
|
2015-02-03 23:43:51 +00:00
|
|
|
'iframe': 'src',
|
|
|
|
|
'img': 'src',
|
2016-04-15 16:27:53 +00:00
|
|
|
'object': 'data',
|
|
|
|
|
'video': 'src'
|
2015-02-03 23:43:51 +00:00
|
|
|
};
|
|
|
|
|
|
2018-12-20 22:29:39 +00:00
|
|
|
const filterTypes = {
|
2016-04-15 16:27:53 +00:00
|
|
|
'audio': 'media',
|
|
|
|
|
'embed': 'object',
|
|
|
|
|
'iframe': 'subdocument',
|
|
|
|
|
'img': 'image',
|
|
|
|
|
'object': 'object',
|
|
|
|
|
'video': 'media',
|
|
|
|
|
};
|
|
|
|
|
|
2014-07-13 00:32:44 +00:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
// Extract the best possible cosmetic filter, i.e. as specific as possible.
|
|
|
|
|
|
2016-06-16 14:55:49 +00:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1725
|
2018-04-29 13:07:12 +00:00
|
|
|
// Also take into account the `src` attribute for `img` elements -- and limit
|
|
|
|
|
// the value to the 1024 first characters.
|
2016-06-16 14:55:49 +00:00
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const cosmeticFilterFromElement = function(elem) {
|
2018-04-29 13:07:12 +00:00
|
|
|
if ( elem === null ) { return 0; }
|
|
|
|
|
if ( elem.nodeType !== 1 ) { return 0; }
|
2016-04-16 15:20:01 +00:00
|
|
|
|
|
|
|
|
if ( candidateElements.indexOf(elem) === -1 ) {
|
|
|
|
|
candidateElements.push(elem);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-29 13:07:12 +00:00
|
|
|
let selector = '';
|
2014-07-13 00:32:44 +00:00
|
|
|
|
|
|
|
|
// Id
|
2018-04-29 13:07:12 +00:00
|
|
|
let v = typeof elem.id === 'string' && CSS.escape(elem.id);
|
2014-07-13 00:32:44 +00:00
|
|
|
if ( v ) {
|
2016-04-17 14:15:01 +00:00
|
|
|
selector = '#' + v;
|
2014-07-13 00:32:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Class(es)
|
2017-02-13 13:33:10 +00:00
|
|
|
v = elem.classList;
|
|
|
|
|
if ( v ) {
|
2018-04-29 13:07:12 +00:00
|
|
|
let i = v.length || 0;
|
2017-02-13 13:33:10 +00:00
|
|
|
while ( i-- ) {
|
|
|
|
|
selector += '.' + CSS.escape(v.item(i));
|
2014-07-13 00:32:44 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-20 22:38:28 +00:00
|
|
|
// Tag name
|
2018-11-06 18:11:03 +00:00
|
|
|
const tagName = elem.localName;
|
2018-04-29 13:07:12 +00:00
|
|
|
|
|
|
|
|
// Use attributes if still no selector found.
|
2016-08-15 17:10:32 +00:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1901
|
2018-04-29 13:07:12 +00:00
|
|
|
// Trim attribute value, this may help in case of malformed HTML.
|
2016-04-17 14:15:01 +00:00
|
|
|
if ( selector === '' ) {
|
2018-04-29 13:07:12 +00:00
|
|
|
let attributes = [], attr;
|
2016-04-17 14:15:01 +00:00
|
|
|
switch ( tagName ) {
|
|
|
|
|
case 'a':
|
|
|
|
|
v = elem.getAttribute('href');
|
|
|
|
|
if ( v ) {
|
2016-08-15 17:10:32 +00:00
|
|
|
v = v.trim().replace(/\?.*$/, '');
|
2016-04-17 14:15:01 +00:00
|
|
|
if ( v.length ) {
|
|
|
|
|
attributes.push({ k: 'href', v: v });
|
|
|
|
|
}
|
2014-10-13 13:47:18 +00:00
|
|
|
}
|
2016-04-17 14:15:01 +00:00
|
|
|
break;
|
2016-08-21 13:49:11 +00:00
|
|
|
case 'iframe':
|
2016-04-17 14:15:01 +00:00
|
|
|
case 'img':
|
2016-06-16 14:55:49 +00:00
|
|
|
v = elem.getAttribute('src');
|
|
|
|
|
if ( v && v.length !== 0 ) {
|
2018-11-06 18:11:03 +00:00
|
|
|
v = v.trim();
|
|
|
|
|
if ( v.startsWith('data:') ) {
|
|
|
|
|
let pos = v.indexOf(',');
|
|
|
|
|
if ( pos !== -1 ) {
|
|
|
|
|
v = v.slice(0, pos + 1);
|
|
|
|
|
}
|
2018-11-06 19:22:09 +00:00
|
|
|
} else if ( v.startsWith('blob:') ) {
|
|
|
|
|
v = new URL(v.slice(5));
|
|
|
|
|
v.pathname = '';
|
|
|
|
|
v = 'blob:' + v.href;
|
2018-11-06 18:11:03 +00:00
|
|
|
}
|
|
|
|
|
attributes.push({ k: 'src', v: v.slice(0, 256) });
|
2016-06-16 14:55:49 +00:00
|
|
|
break;
|
|
|
|
|
}
|
2016-04-17 14:15:01 +00:00
|
|
|
v = elem.getAttribute('alt');
|
|
|
|
|
if ( v && v.length !== 0 ) {
|
|
|
|
|
attributes.push({ k: 'alt', v: v });
|
2016-06-16 14:55:49 +00:00
|
|
|
break;
|
2016-04-17 14:15:01 +00:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2014-07-13 00:32:44 +00:00
|
|
|
}
|
2016-04-17 14:15:01 +00:00
|
|
|
while ( (attr = attributes.pop()) ) {
|
2018-04-29 13:07:12 +00:00
|
|
|
if ( attr.v.length === 0 ) { continue; }
|
2016-04-17 14:15:01 +00:00
|
|
|
v = elem.getAttribute(attr.k);
|
|
|
|
|
if ( attr.v === v ) {
|
2020-09-01 16:32:12 +00:00
|
|
|
selector += `[${attr.k}="${attr.v}"]`;
|
2018-04-29 13:07:12 +00:00
|
|
|
} else if ( v.startsWith(attr.v) ) {
|
2020-09-01 16:32:12 +00:00
|
|
|
selector += `[${attr.k}^="${attr.v}"]`;
|
2016-04-17 14:15:01 +00:00
|
|
|
} else {
|
2020-09-01 16:32:12 +00:00
|
|
|
selector += `[${attr.k}*="${attr.v}"]`;
|
2016-04-17 14:15:01 +00:00
|
|
|
}
|
2014-07-13 00:32:44 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-29 13:07:12 +00:00
|
|
|
// https://github.com/uBlockOrigin/uBlock-issues/issues/17
|
|
|
|
|
// If selector is ambiguous at this point, add the element name to
|
|
|
|
|
// further narrow it down.
|
2018-11-06 18:11:03 +00:00
|
|
|
const parentNode = elem.parentNode;
|
2018-04-29 13:07:12 +00:00
|
|
|
if (
|
|
|
|
|
selector === '' ||
|
2020-09-01 16:32:12 +00:00
|
|
|
safeQuerySelectorAll(parentNode, `:scope > ${selector}`).length > 1
|
2018-04-29 13:07:12 +00:00
|
|
|
) {
|
|
|
|
|
selector = tagName + selector;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-07 01:26:05 +00:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/637
|
2018-04-29 13:07:12 +00:00
|
|
|
// If the selector is still ambiguous at this point, further narrow using
|
|
|
|
|
// `nth-of-type`. It is preferable to use `nth-of-type` as opposed to
|
|
|
|
|
// `nth-child`, as `nth-of-type` is less volatile.
|
2020-09-01 16:32:12 +00:00
|
|
|
if ( safeQuerySelectorAll(parentNode, `:scope > ${selector}`).length > 1 ) {
|
2018-04-29 13:07:12 +00:00
|
|
|
let i = 1;
|
2015-01-30 05:49:30 +00:00
|
|
|
while ( elem.previousSibling !== null ) {
|
|
|
|
|
elem = elem.previousSibling;
|
2018-04-29 13:07:12 +00:00
|
|
|
if (
|
|
|
|
|
typeof elem.localName === 'string' &&
|
|
|
|
|
elem.localName === tagName
|
|
|
|
|
) {
|
|
|
|
|
i++;
|
2015-01-30 05:49:30 +00:00
|
|
|
}
|
|
|
|
|
}
|
2020-09-01 16:32:12 +00:00
|
|
|
selector += `:nth-of-type(${i})`;
|
2015-01-30 05:49:30 +00:00
|
|
|
}
|
|
|
|
|
|
2016-04-16 15:20:01 +00:00
|
|
|
if ( bestCandidateFilter === null ) {
|
|
|
|
|
bestCandidateFilter = {
|
2016-04-17 14:15:01 +00:00
|
|
|
type: 'cosmetic',
|
2016-04-16 15:20:01 +00:00
|
|
|
filters: cosmeticFilterCandidates,
|
|
|
|
|
slot: cosmeticFilterCandidates.length
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
cosmeticFilterCandidates.push(`##${selector}`);
|
2016-04-16 15:20:01 +00:00
|
|
|
|
|
|
|
|
return 1;
|
2014-07-13 00:32:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const filtersFrom = function(x, y) {
|
2016-04-16 15:20:01 +00:00
|
|
|
bestCandidateFilter = null;
|
2014-09-28 16:05:46 +00:00
|
|
|
netFilterCandidates.length = 0;
|
|
|
|
|
cosmeticFilterCandidates.length = 0;
|
2016-04-16 15:20:01 +00:00
|
|
|
candidateElements.length = 0;
|
2016-04-15 16:27:53 +00:00
|
|
|
|
|
|
|
|
// We need at least one element.
|
2018-04-29 13:07:12 +00:00
|
|
|
let first = null;
|
2016-04-15 16:27:53 +00:00
|
|
|
if ( typeof x === 'number' ) {
|
|
|
|
|
first = elementFromPoint(x, y);
|
|
|
|
|
} else if ( x instanceof HTMLElement ) {
|
|
|
|
|
first = x;
|
|
|
|
|
x = undefined;
|
|
|
|
|
}
|
2016-04-16 15:20:01 +00:00
|
|
|
|
|
|
|
|
// Network filter from element which was clicked.
|
|
|
|
|
if ( first !== null ) {
|
|
|
|
|
netFilterFromElement(first);
|
2016-04-15 16:27:53 +00:00
|
|
|
}
|
|
|
|
|
|
2016-04-16 15:20:01 +00:00
|
|
|
// Cosmetic filter candidates from ancestors.
|
2018-04-29 13:07:12 +00:00
|
|
|
let elem = first;
|
2015-03-20 22:38:28 +00:00
|
|
|
while ( elem && elem !== document.body ) {
|
2016-04-16 15:20:01 +00:00
|
|
|
cosmeticFilterFromElement(elem);
|
2014-09-28 16:05:46 +00:00
|
|
|
elem = elem.parentNode;
|
2014-07-13 00:32:44 +00:00
|
|
|
}
|
2015-03-20 22:38:28 +00:00
|
|
|
// The body tag is needed as anchor only when the immediate child
|
2018-04-29 13:07:12 +00:00
|
|
|
// uses `nth-of-type`.
|
|
|
|
|
let i = cosmeticFilterCandidates.length;
|
|
|
|
|
if ( i !== 0 ) {
|
|
|
|
|
let selector = cosmeticFilterCandidates[i-1];
|
|
|
|
|
if (
|
|
|
|
|
selector.indexOf(':nth-of-type(') !== -1 &&
|
|
|
|
|
safeQuerySelectorAll(document.body, selector).length > 1
|
|
|
|
|
) {
|
|
|
|
|
cosmeticFilterCandidates.push('##body');
|
|
|
|
|
}
|
2015-03-20 22:38:28 +00:00
|
|
|
}
|
2016-04-15 16:27:53 +00:00
|
|
|
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/1545
|
2016-04-16 15:20:01 +00:00
|
|
|
// Network filter candidates from all other elements found at point (x, y).
|
2016-04-15 16:27:53 +00:00
|
|
|
if ( typeof x === 'number' ) {
|
2020-09-01 16:32:12 +00:00
|
|
|
let attrName = vAPI.sessionId + '-clickblind';
|
2018-04-29 13:07:12 +00:00
|
|
|
let previous;
|
2016-04-15 16:27:53 +00:00
|
|
|
elem = first;
|
2016-04-16 15:20:01 +00:00
|
|
|
while ( elem !== null ) {
|
2016-04-15 16:27:53 +00:00
|
|
|
previous = elem;
|
|
|
|
|
elem.setAttribute(attrName, '');
|
2016-04-16 15:20:01 +00:00
|
|
|
elem = elementFromPoint(x, y);
|
2016-04-15 16:27:53 +00:00
|
|
|
if ( elem === null || elem === previous ) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
2016-04-16 15:20:01 +00:00
|
|
|
netFilterFromElement(elem);
|
2016-04-15 16:27:53 +00:00
|
|
|
}
|
2020-09-01 16:32:12 +00:00
|
|
|
let elems = document.querySelectorAll(`[${attrName}]`);
|
2016-04-15 16:27:53 +00:00
|
|
|
i = elems.length;
|
|
|
|
|
while ( i-- ) {
|
|
|
|
|
elems[i].removeAttribute(attrName);
|
|
|
|
|
}
|
2016-04-16 15:20:01 +00:00
|
|
|
|
|
|
|
|
netFilterFromElement(document.body);
|
2016-04-15 16:27:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return netFilterCandidates.length + cosmeticFilterCandidates.length;
|
|
|
|
|
};
|
|
|
|
|
|
2016-10-01 16:34:25 +00:00
|
|
|
/*******************************************************************************
|
2016-04-15 16:27:53 +00:00
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
filterToDOMInterface.queryAll
|
2016-10-01 16:34:25 +00:00
|
|
|
@desc Look-up all the HTML elements matching the filter passed in
|
|
|
|
|
argument.
|
2016-12-25 21:56:39 +00:00
|
|
|
@param string, a cosmetic or network filter.
|
|
|
|
|
@param function, called once all items matching the filter have been
|
|
|
|
|
collected.
|
2016-10-01 16:34:25 +00:00
|
|
|
@return array, or undefined if the filter is invalid.
|
2014-09-28 16:05:46 +00:00
|
|
|
|
2016-10-01 16:34:25 +00:00
|
|
|
filterToDOMInterface.preview
|
|
|
|
|
@desc Apply/unapply filter to the DOM.
|
|
|
|
|
@param string, a cosmetic of network filter, or literal false to remove
|
|
|
|
|
the effects of the filter on the DOM.
|
|
|
|
|
@return undefined.
|
2015-02-10 17:59:27 +00:00
|
|
|
|
2016-10-01 16:34:25 +00:00
|
|
|
TODO: need to be revised once I implement chained cosmetic operators.
|
|
|
|
|
|
|
|
|
|
*/
|
2019-06-29 15:06:03 +00:00
|
|
|
|
|
|
|
|
const filterToDOMInterface = (( ) => {
|
|
|
|
|
const reHnAnchorPrefix = '^[\\w-]+://(?:[^/?#]+\\.)?';
|
|
|
|
|
const reCaret = '(?:[^%.0-9a-z_-]|$)';
|
2019-08-11 20:32:49 +00:00
|
|
|
const rePseudoElements = /:(?::?after|:?before|:[a-z-]+)$/;
|
2019-06-29 15:06:03 +00:00
|
|
|
|
2016-10-01 16:34:25 +00:00
|
|
|
// Net filters: we need to lookup manually -- translating into a foolproof
|
|
|
|
|
// CSS selector is just not possible.
|
2019-06-29 15:06:03 +00:00
|
|
|
//
|
|
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/945
|
|
|
|
|
// Transform into a regular expression, this allows the user to
|
|
|
|
|
// edit and insert wildcard(s) into the proposed filter.
|
|
|
|
|
// https://www.reddit.com/r/uBlockOrigin/comments/c5do7w/
|
|
|
|
|
// Better handling of pure hostname filters. Also, discard single
|
|
|
|
|
// alphanumeric character filters.
|
2019-02-18 21:00:42 +00:00
|
|
|
const fromNetworkFilter = function(filter) {
|
|
|
|
|
const out = [];
|
2019-06-29 15:06:03 +00:00
|
|
|
if ( /^[0-9a-z]$/i.test(filter) ) { return out; }
|
2019-02-18 21:00:42 +00:00
|
|
|
let reStr = '';
|
2019-06-29 15:06:03 +00:00
|
|
|
if (
|
|
|
|
|
filter.length > 2 &&
|
|
|
|
|
filter.startsWith('/') &&
|
|
|
|
|
filter.endsWith('/')
|
|
|
|
|
) {
|
2016-10-01 16:34:25 +00:00
|
|
|
reStr = filter.slice(1, -1);
|
2019-06-29 15:06:03 +00:00
|
|
|
} else if ( /^\w[\w.-]*[a-z]$/i.test(filter) ) {
|
|
|
|
|
reStr = reHnAnchorPrefix +
|
|
|
|
|
filter.toLowerCase().replace(/\./g, '\\.') +
|
|
|
|
|
reCaret;
|
|
|
|
|
} else {
|
2019-02-18 21:00:42 +00:00
|
|
|
let rePrefix = '', reSuffix = '';
|
2019-06-29 15:06:03 +00:00
|
|
|
if ( filter.startsWith('||') ) {
|
|
|
|
|
rePrefix = reHnAnchorPrefix;
|
|
|
|
|
filter = filter.slice(2);
|
|
|
|
|
} else if ( filter.startsWith('|') ) {
|
|
|
|
|
rePrefix = '^';
|
|
|
|
|
filter = filter.slice(1);
|
2016-10-01 16:34:25 +00:00
|
|
|
}
|
2019-06-29 15:06:03 +00:00
|
|
|
if ( filter.endsWith('|') ) {
|
2016-10-01 16:34:25 +00:00
|
|
|
reSuffix = '$';
|
|
|
|
|
filter = filter.slice(0, -1);
|
|
|
|
|
}
|
|
|
|
|
reStr = rePrefix +
|
2019-06-29 15:06:03 +00:00
|
|
|
filter.replace(/[.+?${}()|[\]\\]/g, '\\$&')
|
|
|
|
|
.replace(/\*+/g, '.*')
|
|
|
|
|
.replace(/\^/g, reCaret) +
|
2016-10-01 16:34:25 +00:00
|
|
|
reSuffix;
|
|
|
|
|
}
|
2019-02-18 21:00:42 +00:00
|
|
|
let reFilter = null;
|
2014-09-28 16:05:46 +00:00
|
|
|
try {
|
2020-02-24 14:24:54 +00:00
|
|
|
reFilter = new RegExp(reStr, 'i');
|
2014-09-28 16:05:46 +00:00
|
|
|
}
|
|
|
|
|
catch (e) {
|
2016-10-01 16:34:25 +00:00
|
|
|
return out;
|
2016-04-15 16:27:53 +00:00
|
|
|
}
|
2016-10-01 16:34:25 +00:00
|
|
|
|
|
|
|
|
// Lookup by tag names.
|
2019-06-29 15:06:03 +00:00
|
|
|
const elems = document.querySelectorAll(
|
2019-02-18 21:00:42 +00:00
|
|
|
Object.keys(netFilter1stSources).join()
|
|
|
|
|
);
|
|
|
|
|
for ( const elem of elems ) {
|
2020-07-05 12:44:14 +00:00
|
|
|
const srcProp = netFilter1stSources[elem.localName];
|
|
|
|
|
const src = elem[srcProp];
|
2020-07-05 13:17:06 +00:00
|
|
|
if (
|
|
|
|
|
typeof src === 'string' &&
|
|
|
|
|
reFilter.test(src) ||
|
2020-07-05 12:44:14 +00:00
|
|
|
typeof elem.currentSrc === 'string' &&
|
2020-07-05 13:17:06 +00:00
|
|
|
reFilter.test(elem.currentSrc)
|
2020-07-05 12:44:14 +00:00
|
|
|
) {
|
2016-10-01 16:34:25 +00:00
|
|
|
out.push({
|
|
|
|
|
type: 'network',
|
|
|
|
|
elem: elem,
|
|
|
|
|
src: srcProp,
|
|
|
|
|
opts: filterTypes[elem.localName],
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Find matching background image in current set of candidate elements.
|
2019-02-18 21:00:42 +00:00
|
|
|
for ( const elem of candidateElements ) {
|
2016-10-01 16:34:25 +00:00
|
|
|
if ( reFilter.test(backgroundImageURLFromElement(elem)) ) {
|
|
|
|
|
out.push({
|
|
|
|
|
type: 'network',
|
|
|
|
|
elem: elem,
|
|
|
|
|
style: 'background-image',
|
|
|
|
|
opts: 'image',
|
|
|
|
|
});
|
|
|
|
|
}
|
2014-07-13 00:32:44 +00:00
|
|
|
}
|
2016-10-01 16:34:25 +00:00
|
|
|
|
2014-09-28 16:05:46 +00:00
|
|
|
return out;
|
2016-10-01 16:34:25 +00:00
|
|
|
};
|
2014-09-28 16:05:46 +00:00
|
|
|
|
2016-10-01 16:34:25 +00:00
|
|
|
// Cosmetic filters: these are straight CSS selectors.
|
2019-02-18 21:00:42 +00:00
|
|
|
//
|
|
|
|
|
// https://github.com/uBlockOrigin/uBlock-issues/issues/389
|
|
|
|
|
// Test filter using comma-separated list to better detect invalid CSS
|
|
|
|
|
// selectors.
|
2019-07-26 13:24:34 +00:00
|
|
|
//
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/2515
|
|
|
|
|
// Remove trailing pseudo-element when querying.
|
2019-06-29 15:06:03 +00:00
|
|
|
const fromPlainCosmeticFilter = function(raw) {
|
2018-11-06 18:11:03 +00:00
|
|
|
let elems;
|
2016-10-01 16:34:25 +00:00
|
|
|
try {
|
2019-06-29 15:06:03 +00:00
|
|
|
document.documentElement.matches(`${raw},\na`);
|
2019-07-26 13:24:34 +00:00
|
|
|
elems = document.querySelectorAll(
|
|
|
|
|
raw.replace(rePseudoElements, '')
|
|
|
|
|
);
|
2016-10-01 16:34:25 +00:00
|
|
|
}
|
|
|
|
|
catch (e) {
|
2016-12-25 21:56:39 +00:00
|
|
|
return;
|
2016-10-01 16:34:25 +00:00
|
|
|
}
|
2018-11-06 18:11:03 +00:00
|
|
|
const out = [];
|
2018-11-06 18:20:44 +00:00
|
|
|
for ( const elem of elems ) {
|
2018-12-06 13:50:13 +00:00
|
|
|
if ( elem === pickerRoot ) { continue; }
|
2019-06-29 15:06:03 +00:00
|
|
|
out.push({ type: 'cosmetic', elem, raw });
|
2016-10-01 16:34:25 +00:00
|
|
|
}
|
|
|
|
|
return out;
|
|
|
|
|
};
|
2015-03-05 17:52:12 +00:00
|
|
|
|
2016-10-01 16:34:25 +00:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1772
|
2019-06-29 15:06:03 +00:00
|
|
|
// Handle procedural cosmetic filters.
|
2019-07-26 13:24:34 +00:00
|
|
|
//
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/2515
|
|
|
|
|
// Remove trailing pseudo-element when querying.
|
2019-02-18 21:00:42 +00:00
|
|
|
const fromCompiledCosmeticFilter = function(raw) {
|
2016-12-25 21:56:39 +00:00
|
|
|
if ( typeof raw !== 'string' ) { return; }
|
2019-07-26 13:24:34 +00:00
|
|
|
let elems;
|
2016-12-25 21:56:39 +00:00
|
|
|
try {
|
2019-07-26 13:24:34 +00:00
|
|
|
const o = JSON.parse(raw);
|
2020-03-07 19:25:06 +00:00
|
|
|
if ( o.action === 'style' ) {
|
2019-07-26 13:24:34 +00:00
|
|
|
elems = document.querySelectorAll(
|
2020-03-07 19:25:06 +00:00
|
|
|
o.selector.replace(rePseudoElements, '')
|
2019-07-26 13:24:34 +00:00
|
|
|
);
|
2020-03-07 19:25:06 +00:00
|
|
|
lastAction = o.selector + ' {' + o.tasks[0][1] + '}';
|
2019-07-26 13:24:34 +00:00
|
|
|
} else if ( o.tasks ) {
|
|
|
|
|
elems = vAPI.domFilterer.createProceduralFilter(o).exec();
|
|
|
|
|
}
|
2016-12-25 21:56:39 +00:00
|
|
|
} catch(ex) {
|
|
|
|
|
return;
|
2016-10-01 16:34:25 +00:00
|
|
|
}
|
2016-12-25 21:56:39 +00:00
|
|
|
if ( !elems ) { return; }
|
2019-02-18 21:00:42 +00:00
|
|
|
const out = [];
|
|
|
|
|
for ( const elem of elems ) {
|
2019-06-29 15:06:03 +00:00
|
|
|
out.push({ type: 'cosmetic', elem, raw });
|
2016-12-25 21:56:39 +00:00
|
|
|
}
|
|
|
|
|
return out;
|
2016-10-01 16:34:25 +00:00
|
|
|
};
|
|
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
let lastFilter;
|
|
|
|
|
let lastResultset;
|
|
|
|
|
let lastAction;
|
|
|
|
|
let appliedStyleTag;
|
|
|
|
|
let applied = false;
|
|
|
|
|
let previewing = false;
|
2016-10-01 16:34:25 +00:00
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
const queryAll = function(details) {
|
|
|
|
|
let { filter, compiled } = details;
|
2016-10-01 16:34:25 +00:00
|
|
|
filter = filter.trim();
|
2020-09-01 16:32:12 +00:00
|
|
|
if ( filter === lastFilter ) { return lastResultset; }
|
2016-10-01 16:34:25 +00:00
|
|
|
unapply();
|
2020-09-01 16:32:12 +00:00
|
|
|
if ( filter === '' || filter === '!' ) {
|
2016-10-01 16:34:25 +00:00
|
|
|
lastFilter = '';
|
|
|
|
|
lastResultset = [];
|
2016-12-25 21:56:39 +00:00
|
|
|
return;
|
2015-03-05 17:52:12 +00:00
|
|
|
}
|
2016-12-25 21:56:39 +00:00
|
|
|
lastFilter = filter;
|
|
|
|
|
lastAction = undefined;
|
2019-06-29 15:06:03 +00:00
|
|
|
if ( filter.startsWith('##') === false ) {
|
2016-12-25 21:56:39 +00:00
|
|
|
lastResultset = fromNetworkFilter(filter);
|
|
|
|
|
if ( previewing ) { apply(); }
|
2020-09-01 16:32:12 +00:00
|
|
|
return lastResultset;
|
2016-12-25 21:56:39 +00:00
|
|
|
}
|
2020-09-01 16:32:12 +00:00
|
|
|
lastResultset = fromPlainCosmeticFilter(compiled);
|
2016-12-25 21:56:39 +00:00
|
|
|
if ( lastResultset ) {
|
|
|
|
|
if ( previewing ) { apply(); }
|
2020-09-01 16:32:12 +00:00
|
|
|
return lastResultset;
|
2016-12-25 21:56:39 +00:00
|
|
|
}
|
|
|
|
|
// Procedural cosmetic filter
|
2020-09-01 16:32:12 +00:00
|
|
|
lastResultset = fromCompiledCosmeticFilter(compiled);
|
2019-09-17 19:15:01 +00:00
|
|
|
if ( previewing ) { apply(); }
|
2020-09-01 16:32:12 +00:00
|
|
|
return lastResultset;
|
2016-10-01 16:34:25 +00:00
|
|
|
};
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1629
|
|
|
|
|
// Avoid hiding the element picker's related elements.
|
2019-02-18 21:00:42 +00:00
|
|
|
const applyHide = function() {
|
|
|
|
|
const htmlElem = document.documentElement;
|
|
|
|
|
for ( const item of lastResultset ) {
|
|
|
|
|
const elem = item.elem;
|
|
|
|
|
if ( elem === pickerRoot ) { continue; }
|
2016-10-01 16:34:25 +00:00
|
|
|
if (
|
|
|
|
|
(elem !== htmlElem) &&
|
|
|
|
|
(item.type === 'cosmetic' || item.type === 'network' && item.src !== undefined)
|
|
|
|
|
) {
|
2019-05-17 23:26:48 +00:00
|
|
|
vAPI.domFilterer.hideNode(elem);
|
|
|
|
|
item.hidden = true;
|
2016-10-01 16:34:25 +00:00
|
|
|
}
|
|
|
|
|
if ( item.type === 'network' && item.style === 'background-image' ) {
|
2019-05-17 23:26:48 +00:00
|
|
|
const style = elem.style;
|
2016-10-01 16:34:25 +00:00
|
|
|
item.backgroundImage = style.getPropertyValue('background-image');
|
|
|
|
|
item.backgroundImagePriority = style.getPropertyPriority('background-image');
|
|
|
|
|
style.setProperty('background-image', 'none', 'important');
|
|
|
|
|
}
|
2015-03-05 17:52:12 +00:00
|
|
|
}
|
2016-10-01 16:34:25 +00:00
|
|
|
};
|
2015-03-05 17:52:12 +00:00
|
|
|
|
2019-02-18 21:00:42 +00:00
|
|
|
const unapplyHide = function() {
|
|
|
|
|
if ( lastResultset === undefined ) { return; }
|
|
|
|
|
for ( const item of lastResultset ) {
|
2019-05-17 23:26:48 +00:00
|
|
|
if ( item.hidden === true ) {
|
|
|
|
|
vAPI.domFilterer.unhideNode(item.elem);
|
|
|
|
|
item.hidden = false;
|
2016-10-01 16:34:25 +00:00
|
|
|
}
|
|
|
|
|
if ( item.hasOwnProperty('backgroundImage') ) {
|
|
|
|
|
item.elem.style.setProperty(
|
|
|
|
|
'background-image',
|
|
|
|
|
item.backgroundImage,
|
|
|
|
|
item.backgroundImagePriority
|
|
|
|
|
);
|
|
|
|
|
delete item.backgroundImage;
|
|
|
|
|
}
|
2015-06-04 15:17:02 +00:00
|
|
|
}
|
2016-10-01 16:34:25 +00:00
|
|
|
};
|
|
|
|
|
|
2019-02-18 21:00:42 +00:00
|
|
|
const unapplyStyle = function() {
|
2016-10-01 16:34:25 +00:00
|
|
|
if ( !appliedStyleTag || appliedStyleTag.parentNode === null ) {
|
|
|
|
|
return;
|
2016-04-15 16:27:53 +00:00
|
|
|
}
|
2016-10-01 16:34:25 +00:00
|
|
|
appliedStyleTag.parentNode.removeChild(appliedStyleTag);
|
|
|
|
|
};
|
2016-04-15 16:27:53 +00:00
|
|
|
|
2019-02-18 21:00:42 +00:00
|
|
|
const applyStyle = function() {
|
2016-10-01 16:34:25 +00:00
|
|
|
if ( !appliedStyleTag ) {
|
|
|
|
|
appliedStyleTag = document.createElement('style');
|
|
|
|
|
appliedStyleTag.setAttribute('type', 'text/css');
|
2014-09-28 16:05:46 +00:00
|
|
|
}
|
2016-10-01 16:34:25 +00:00
|
|
|
appliedStyleTag.textContent = lastAction;
|
|
|
|
|
if ( appliedStyleTag.parentNode === null ) {
|
|
|
|
|
document.head.appendChild(appliedStyleTag);
|
|
|
|
|
}
|
|
|
|
|
};
|
2016-04-15 16:27:53 +00:00
|
|
|
|
2019-02-18 21:00:42 +00:00
|
|
|
const apply = function() {
|
2016-10-01 16:34:25 +00:00
|
|
|
if ( applied ) {
|
|
|
|
|
unapply();
|
|
|
|
|
}
|
2019-02-18 21:00:42 +00:00
|
|
|
if ( lastResultset === undefined ) { return; }
|
2016-10-01 16:34:25 +00:00
|
|
|
if ( typeof lastAction === 'string' ) {
|
|
|
|
|
applyStyle();
|
|
|
|
|
} else {
|
|
|
|
|
applyHide();
|
|
|
|
|
}
|
|
|
|
|
applied = true;
|
|
|
|
|
};
|
|
|
|
|
|
2019-02-18 21:00:42 +00:00
|
|
|
const unapply = function() {
|
|
|
|
|
if ( !applied ) { return; }
|
2016-10-01 16:34:25 +00:00
|
|
|
if ( typeof lastAction === 'string' ) {
|
|
|
|
|
unapplyStyle();
|
|
|
|
|
} else {
|
|
|
|
|
unapplyHide();
|
|
|
|
|
}
|
|
|
|
|
applied = false;
|
|
|
|
|
};
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
// https://www.reddit.com/r/uBlockOrigin/comments/c62irc/
|
|
|
|
|
// Support injecting the cosmetic filters into the DOM filterer
|
|
|
|
|
// immediately rather than wait for the next page load.
|
2020-09-01 16:32:12 +00:00
|
|
|
const preview = function(state, permanent = false) {
|
|
|
|
|
previewing = state !== false;
|
2016-10-01 16:34:25 +00:00
|
|
|
pickerBody.classList.toggle('preview', previewing);
|
2019-06-29 15:06:03 +00:00
|
|
|
if ( previewing === false ) {
|
|
|
|
|
return unapply();
|
|
|
|
|
}
|
2020-09-01 16:32:12 +00:00
|
|
|
if ( lastResultset === undefined ) { return; }
|
|
|
|
|
apply();
|
|
|
|
|
if ( permanent === false ) { return; }
|
|
|
|
|
if ( vAPI.domFilterer instanceof Object === false ) { return; }
|
|
|
|
|
const cssSelectors = new Set();
|
|
|
|
|
const proceduralSelectors = new Set();
|
|
|
|
|
for ( const item of lastResultset ) {
|
|
|
|
|
if ( item.type !== 'cosmetic' ) { continue; }
|
|
|
|
|
if ( item.raw.startsWith('{') ) {
|
|
|
|
|
proceduralSelectors.add(item.raw);
|
|
|
|
|
} else {
|
|
|
|
|
cssSelectors.add(item.raw);
|
2019-06-30 14:22:06 +00:00
|
|
|
}
|
2016-12-25 21:56:39 +00:00
|
|
|
}
|
2020-09-01 16:32:12 +00:00
|
|
|
if ( cssSelectors.size !== 0 ) {
|
|
|
|
|
vAPI.domFilterer.addCSSRule(
|
|
|
|
|
Array.from(cssSelectors),
|
|
|
|
|
'display:none!important;'
|
|
|
|
|
);
|
2016-12-25 21:56:39 +00:00
|
|
|
}
|
2020-09-01 16:32:12 +00:00
|
|
|
if ( proceduralSelectors.size !== 0 ) {
|
|
|
|
|
vAPI.domFilterer.addProceduralSelectors(
|
|
|
|
|
Array.from(proceduralSelectors)
|
|
|
|
|
);
|
2016-10-01 16:34:25 +00:00
|
|
|
}
|
2016-12-25 21:56:39 +00:00
|
|
|
};
|
|
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
return {
|
|
|
|
|
get previewing() { return previewing; },
|
|
|
|
|
preview,
|
|
|
|
|
queryAll,
|
2016-12-25 21:56:39 +00:00
|
|
|
};
|
|
|
|
|
})();
|
2014-07-13 00:32:44 +00:00
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2018-12-22 20:44:23 +00:00
|
|
|
const showDialog = function(options) {
|
2014-09-28 16:05:46 +00:00
|
|
|
pausePicker();
|
|
|
|
|
|
|
|
|
|
options = options || {};
|
|
|
|
|
|
2017-10-28 13:07:41 +00:00
|
|
|
// Typically the dialog will be forced to be visible when using a
|
|
|
|
|
// touch-aware device.
|
|
|
|
|
dialog.classList.toggle('show', options.show === true);
|
|
|
|
|
dialog.classList.remove('hide');
|
|
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
vAPI.MessagingConnection.sendTo(epickerConnectionId, {
|
|
|
|
|
what: 'showDialog',
|
|
|
|
|
hostname: self.location.hostname,
|
|
|
|
|
origin: self.location.origin,
|
|
|
|
|
netFilters: netFilterCandidates,
|
|
|
|
|
cosmeticFilters: cosmeticFilterCandidates,
|
|
|
|
|
filter: bestCandidateFilter,
|
|
|
|
|
options,
|
|
|
|
|
});
|
2014-07-13 00:32:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2019-05-06 17:32:55 +00:00
|
|
|
// https://www.reddit.com/r/uBlockOrigin/comments/bktxtb/scrolling_doesnt_work/emn901o
|
|
|
|
|
// Override 'fixed' position property on body element if present.
|
|
|
|
|
|
2018-12-22 20:44:23 +00:00
|
|
|
const zap = function() {
|
2017-05-27 15:51:24 +00:00
|
|
|
if ( targetElements.length === 0 ) { return; }
|
2019-05-06 17:32:55 +00:00
|
|
|
|
|
|
|
|
const getStyleValue = function(elem, prop) {
|
|
|
|
|
const style = window.getComputedStyle(elem);
|
|
|
|
|
return style ? style[prop] : '';
|
|
|
|
|
};
|
|
|
|
|
|
2018-12-22 20:44:23 +00:00
|
|
|
let elem = targetElements[0];
|
2017-05-27 15:51:24 +00:00
|
|
|
// Heuristic to detect scroll-locking: remove such lock when detected.
|
2019-05-06 17:32:55 +00:00
|
|
|
if (
|
|
|
|
|
parseInt(getStyleValue(elem, 'zIndex'), 10) >= 1000 ||
|
|
|
|
|
getStyleValue(elem, 'position') === 'fixed'
|
|
|
|
|
) {
|
|
|
|
|
const doc = document;
|
|
|
|
|
if ( getStyleValue(doc.body, 'overflowY') === 'hidden' ) {
|
|
|
|
|
doc.body.style.setProperty('overflow', 'auto', 'important');
|
|
|
|
|
}
|
|
|
|
|
if ( getStyleValue(doc.body, 'position') === 'fixed' ) {
|
|
|
|
|
doc.body.style.setProperty('position', 'static', 'important');
|
|
|
|
|
}
|
|
|
|
|
if ( getStyleValue(doc.documentElement, 'overflowY') === 'hidden' ) {
|
|
|
|
|
doc.documentElement.style.setProperty('overflow', 'auto', 'important');
|
|
|
|
|
}
|
2015-12-03 06:08:37 +00:00
|
|
|
}
|
2019-05-06 17:32:55 +00:00
|
|
|
|
2017-05-27 15:51:24 +00:00
|
|
|
elem.parentNode.removeChild(elem);
|
2017-05-28 17:45:11 +00:00
|
|
|
elem = elementFromPoint();
|
2019-05-06 17:32:55 +00:00
|
|
|
highlightElements(elem ? [ elem ] : []);
|
2014-09-28 18:38:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const elementFromPoint = (( ) => {
|
|
|
|
|
let lastX, lastY;
|
2017-05-27 15:51:24 +00:00
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
return (x, y) => {
|
2017-05-27 15:51:24 +00:00
|
|
|
if ( x !== undefined ) {
|
|
|
|
|
lastX = x; lastY = y;
|
|
|
|
|
} else if ( lastX !== undefined ) {
|
|
|
|
|
x = lastX; y = lastY;
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
if ( !pickerRoot ) { return null; }
|
2019-01-15 21:34:57 +00:00
|
|
|
pickerRoot.style.setProperty('pointer-events', 'none', 'important');
|
2019-06-29 15:06:03 +00:00
|
|
|
let elem = document.elementFromPoint(x, y);
|
2017-05-27 15:51:24 +00:00
|
|
|
if ( elem === document.body || elem === document.documentElement ) {
|
|
|
|
|
elem = null;
|
|
|
|
|
}
|
2019-01-15 21:34:57 +00:00
|
|
|
// https://github.com/uBlockOrigin/uBlock-issues/issues/380
|
|
|
|
|
pickerRoot.style.setProperty('pointer-events', 'auto', 'important');
|
2017-05-27 15:51:24 +00:00
|
|
|
return elem;
|
|
|
|
|
};
|
|
|
|
|
})();
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
const onSvgHovered = (( ) => {
|
2019-01-15 21:34:57 +00:00
|
|
|
let timer;
|
|
|
|
|
let mx = 0, my = 0;
|
2015-05-27 19:15:20 +00:00
|
|
|
|
2019-01-15 21:34:57 +00:00
|
|
|
const onTimer = function() {
|
|
|
|
|
timer = undefined;
|
|
|
|
|
const elem = elementFromPoint(mx, my);
|
2015-05-27 19:15:20 +00:00
|
|
|
highlightElements(elem ? [elem] : []);
|
|
|
|
|
};
|
|
|
|
|
|
2017-05-29 14:38:22 +00:00
|
|
|
return function onMove(ev) {
|
2015-05-30 17:44:55 +00:00
|
|
|
mx = ev.clientX;
|
|
|
|
|
my = ev.clientY;
|
2019-01-15 21:34:57 +00:00
|
|
|
if ( timer === undefined ) {
|
2015-05-30 17:44:55 +00:00
|
|
|
timer = vAPI.setTimeout(onTimer, 40);
|
2015-05-27 19:15:20 +00:00
|
|
|
}
|
|
|
|
|
};
|
2017-05-29 14:38:22 +00:00
|
|
|
})();
|
|
|
|
|
|
2017-10-28 13:07:41 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
|
|
Swipe right:
|
|
|
|
|
If picker not paused: quit picker
|
|
|
|
|
If picker paused and dialog visible: hide dialog
|
|
|
|
|
If picker paused and dialog not visible: quit picker
|
|
|
|
|
|
|
|
|
|
Swipe left:
|
|
|
|
|
If picker paused and dialog not visible: show dialog
|
|
|
|
|
|
|
|
|
|
*/
|
2015-05-27 19:15:20 +00:00
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
const onSvgTouchStartStop = (( ) => {
|
2017-05-29 14:38:22 +00:00
|
|
|
var startX,
|
|
|
|
|
startY;
|
|
|
|
|
return function onTouch(ev) {
|
|
|
|
|
if ( ev.type === 'touchstart' ) {
|
2017-10-31 12:26:51 +00:00
|
|
|
startX = ev.touches[0].screenX;
|
|
|
|
|
startY = ev.touches[0].screenY;
|
2017-05-29 14:38:22 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ( startX === undefined ) { return; }
|
2017-10-31 12:26:51 +00:00
|
|
|
if ( ev.cancelable === false ) { return; }
|
|
|
|
|
var stopX = ev.changedTouches[0].screenX,
|
|
|
|
|
stopY = ev.changedTouches[0].screenY,
|
2017-10-28 13:07:41 +00:00
|
|
|
angle = Math.abs(Math.atan2(stopY - startY, stopX - startX)),
|
2017-05-29 14:38:22 +00:00
|
|
|
distance = Math.sqrt(
|
|
|
|
|
Math.pow(stopX - startX, 2),
|
|
|
|
|
Math.pow(stopY - startY, 2)
|
|
|
|
|
);
|
2017-10-28 13:07:41 +00:00
|
|
|
// Interpret touch events as a click events if swipe is not valid.
|
2017-10-31 12:26:51 +00:00
|
|
|
if ( distance < 32 ) {
|
2017-10-28 13:07:41 +00:00
|
|
|
onSvgClicked({
|
|
|
|
|
type: 'touch',
|
|
|
|
|
target: ev.target,
|
2017-10-31 12:26:51 +00:00
|
|
|
clientX: ev.changedTouches[0].pageX,
|
2017-11-12 12:44:28 +00:00
|
|
|
clientY: ev.changedTouches[0].pageY,
|
|
|
|
|
isTrusted: ev.isTrusted
|
2017-10-28 13:07:41 +00:00
|
|
|
});
|
2017-10-31 12:26:51 +00:00
|
|
|
ev.preventDefault();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ( distance < 64 ) { return; }
|
|
|
|
|
var angleUpperBound = Math.PI * 0.25 * 0.5,
|
|
|
|
|
swipeRight = angle < angleUpperBound;
|
|
|
|
|
if ( swipeRight === false && angle < Math.PI - angleUpperBound ) {
|
2017-05-29 14:38:22 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2017-10-31 12:26:51 +00:00
|
|
|
ev.preventDefault();
|
2017-10-28 13:07:41 +00:00
|
|
|
// Swipe left.
|
|
|
|
|
if ( swipeRight === false ) {
|
|
|
|
|
if ( pickerBody.classList.contains('paused') ) {
|
|
|
|
|
dialog.classList.remove('hide');
|
|
|
|
|
dialog.classList.add('show');
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// Swipe right.
|
|
|
|
|
if (
|
|
|
|
|
pickerBody.classList.contains('paused') &&
|
|
|
|
|
dialog.classList.contains('show')
|
|
|
|
|
) {
|
|
|
|
|
dialog.classList.remove('show');
|
|
|
|
|
dialog.classList.add('hide');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
stopPicker();
|
2017-05-29 14:38:22 +00:00
|
|
|
};
|
2015-05-27 19:15:20 +00:00
|
|
|
})();
|
2014-07-13 00:32:44 +00:00
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const onSvgClicked = function(ev) {
|
2017-11-12 12:44:28 +00:00
|
|
|
if ( ev.isTrusted === false ) { return; }
|
|
|
|
|
|
2017-05-29 14:38:22 +00:00
|
|
|
// If zap mode, highlight element under mouse, this makes the zapper usable
|
|
|
|
|
// on touch screens.
|
2020-09-01 16:32:12 +00:00
|
|
|
if ( pickerBootArgs.zap ) {
|
|
|
|
|
let elem = targetElements.lenght !== 0 && targetElements[0];
|
2017-05-29 14:38:22 +00:00
|
|
|
if ( !elem || ev.target !== svgIslands ) {
|
|
|
|
|
elem = elementFromPoint(ev.clientX, ev.clientY);
|
|
|
|
|
if ( elem !== null ) {
|
|
|
|
|
highlightElements([elem]);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
zap();
|
|
|
|
|
if ( !ev.shiftKey ) {
|
|
|
|
|
stopPicker();
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-04-07 01:26:05 +00:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/810#issuecomment-74600694
|
2016-10-01 16:34:25 +00:00
|
|
|
// Unpause picker if:
|
|
|
|
|
// - click outside dialog AND
|
|
|
|
|
// - not in preview mode
|
2016-04-16 15:20:01 +00:00
|
|
|
if ( pickerBody.classList.contains('paused') ) {
|
2020-09-01 16:32:12 +00:00
|
|
|
if ( filterToDOMInterface.previewing === false ) {
|
2016-10-01 16:34:25 +00:00
|
|
|
unpausePicker();
|
|
|
|
|
}
|
2015-03-09 14:11:22 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2016-04-15 16:27:53 +00:00
|
|
|
if ( filtersFrom(ev.clientX, ev.clientY) === 0 ) {
|
2014-09-28 18:38:17 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2018-12-22 20:44:23 +00:00
|
|
|
showDialog({
|
|
|
|
|
show: ev.type === 'touch',
|
|
|
|
|
modifier: ev.ctrlKey
|
|
|
|
|
});
|
2014-07-13 00:32:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const svgListening = function(on) {
|
2020-09-01 16:32:12 +00:00
|
|
|
const action = (on ? 'add' : 'remove') + 'EventListener';
|
2017-05-29 14:38:22 +00:00
|
|
|
svgRoot[action]('mousemove', onSvgHovered, { passive: true });
|
2015-02-09 13:03:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const onKeyPressed = function(ev) {
|
2017-05-27 15:51:24 +00:00
|
|
|
// Delete
|
In Element Zapper, support Mac keyboards’ Delete key (#3770)
Override the Backspace key, not just the Delete key, as Mac keyboards have Backspace as the only delete key and label it Delete.
Source of key value: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key/Key_Values#Editing_keys
More background on Mac keyboard shortcuts: Mac keyboards can emulate Delete using fn+Delete, meaning Forward Delete, but Mac software does not use it except in text editing. When deletion is dangerous, Mac software requires holding a modifier key in conjuction with Delete, but I think it’s better to make deletion easy in this case.
This new binding has a potential downside: if the user Backspace key normally goes Back in history (which can differ across OSs and browsers), this will change the behavior to delete the selected element instead. If the user really wants to go back in history, they will have to press Escape to leave the mode and then press Backspace, or they will have to press an alternative keyboard shortcuts such as Alt+Left. I think the user will rarely want to go back in history in the middle of picking an element, though.
That downside could be mitigated by conditioning the key check on `runtime.PlatformOs` (https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/runtime/PlatformOs). But that would complicate the code a lot compared to the importance of this feature, and such detection would still fail to capture the user’s intent accurately in all cases. I think it’s better to unconditionally accept both Backspace (Delete) and Delete (Forward Delete).
2020-02-28 19:28:00 +00:00
|
|
|
if (
|
|
|
|
|
(ev.key === 'Delete' || ev.key === 'Backspace') &&
|
2020-09-01 16:32:12 +00:00
|
|
|
pickerBootArgs.zap
|
In Element Zapper, support Mac keyboards’ Delete key (#3770)
Override the Backspace key, not just the Delete key, as Mac keyboards have Backspace as the only delete key and label it Delete.
Source of key value: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key/Key_Values#Editing_keys
More background on Mac keyboard shortcuts: Mac keyboards can emulate Delete using fn+Delete, meaning Forward Delete, but Mac software does not use it except in text editing. When deletion is dangerous, Mac software requires holding a modifier key in conjuction with Delete, but I think it’s better to make deletion easy in this case.
This new binding has a potential downside: if the user Backspace key normally goes Back in history (which can differ across OSs and browsers), this will change the behavior to delete the selected element instead. If the user really wants to go back in history, they will have to press Escape to leave the mode and then press Backspace, or they will have to press an alternative keyboard shortcuts such as Alt+Left. I think the user will rarely want to go back in history in the middle of picking an element, though.
That downside could be mitigated by conditioning the key check on `runtime.PlatformOs` (https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/runtime/PlatformOs). But that would complicate the code a lot compared to the importance of this feature, and such detection would still fail to capture the user’s intent accurately in all cases. I think it’s better to unconditionally accept both Backspace (Delete) and Delete (Forward Delete).
2020-02-28 19:28:00 +00:00
|
|
|
) {
|
2017-05-27 15:51:24 +00:00
|
|
|
ev.stopPropagation();
|
|
|
|
|
ev.preventDefault();
|
|
|
|
|
zap();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// Esc
|
|
|
|
|
if ( ev.key === 'Escape' || ev.which === 27 ) {
|
2014-07-13 15:38:52 +00:00
|
|
|
ev.stopPropagation();
|
|
|
|
|
ev.preventDefault();
|
2016-12-25 21:56:39 +00:00
|
|
|
filterToDOMInterface.preview(false);
|
2014-07-13 15:38:52 +00:00
|
|
|
stopPicker();
|
2017-05-27 15:51:24 +00:00
|
|
|
return;
|
2014-07-13 15:38:52 +00:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2015-04-07 01:26:05 +00:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/190
|
2020-09-01 16:32:12 +00:00
|
|
|
// May need to dynamically adjust the height of the overlay + new position
|
|
|
|
|
// of highlighted elements.
|
2014-08-30 21:22:31 +00:00
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const onScrolled = function() {
|
2014-08-30 21:20:14 +00:00
|
|
|
highlightElements(targetElements, true);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const pausePicker = function() {
|
2016-04-16 15:20:01 +00:00
|
|
|
pickerBody.classList.add('paused');
|
2015-03-09 14:11:22 +00:00
|
|
|
svgListening(false);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const unpausePicker = function() {
|
2016-10-01 16:34:25 +00:00
|
|
|
filterToDOMInterface.preview(false);
|
2016-04-16 15:20:01 +00:00
|
|
|
pickerBody.classList.remove('paused');
|
2015-03-09 14:11:22 +00:00
|
|
|
svgListening(true);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-09-28 16:05:46 +00:00
|
|
|
// Let's have the element picker code flushed from memory when no longer
|
|
|
|
|
// in use: to ensure this, release all local references.
|
|
|
|
|
|
2019-06-29 15:06:03 +00:00
|
|
|
const stopPicker = function() {
|
2016-10-01 16:34:25 +00:00
|
|
|
vAPI.shutdown.remove(stopPicker);
|
|
|
|
|
|
2014-07-13 15:38:52 +00:00
|
|
|
targetElements = [];
|
2016-04-16 15:20:01 +00:00
|
|
|
candidateElements = [];
|
|
|
|
|
bestCandidateFilter = null;
|
2015-02-09 13:03:29 +00:00
|
|
|
|
2017-10-21 17:43:46 +00:00
|
|
|
if ( pickerRoot === null ) { return; }
|
2015-02-09 13:03:29 +00:00
|
|
|
|
2016-10-08 19:14:24 +00:00
|
|
|
// https://github.com/gorhill/uBlock/issues/2060
|
2017-10-21 17:43:46 +00:00
|
|
|
if ( vAPI.domFilterer instanceof Object ) {
|
2020-09-01 16:32:12 +00:00
|
|
|
vAPI.userStylesheet.remove(pickerCSS);
|
2017-10-22 12:59:29 +00:00
|
|
|
vAPI.userStylesheet.apply();
|
2020-09-01 16:32:12 +00:00
|
|
|
vAPI.domFilterer.unexcludeNode(pickerRoot);
|
2016-10-08 19:14:24 +00:00
|
|
|
}
|
|
|
|
|
|
2015-02-09 13:03:29 +00:00
|
|
|
window.removeEventListener('scroll', onScrolled, true);
|
|
|
|
|
svgListening(false);
|
2020-09-01 16:32:12 +00:00
|
|
|
pickerRoot.remove();
|
|
|
|
|
pickerRoot = pickerBody = svgRoot = svgOcean = svgIslands = dialog = null;
|
2015-02-09 13:03:29 +00:00
|
|
|
|
|
|
|
|
window.focus();
|
2014-07-13 15:38:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
// Auto-select a specific target, if any, and if possible
|
2015-02-08 18:34:28 +00:00
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
const startPicker = function() {
|
2015-03-09 14:11:22 +00:00
|
|
|
svgRoot.addEventListener('click', onSvgClicked);
|
2017-05-29 14:38:22 +00:00
|
|
|
svgRoot.addEventListener('touchstart', onSvgTouchStartStop);
|
|
|
|
|
svgRoot.addEventListener('touchend', onSvgTouchStartStop);
|
2015-02-09 13:03:29 +00:00
|
|
|
svgListening(true);
|
|
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
self.addEventListener('scroll', onScrolled, true);
|
2015-02-09 13:03:29 +00:00
|
|
|
pickerRoot.contentWindow.addEventListener('keydown', onKeyPressed, true);
|
|
|
|
|
pickerRoot.contentWindow.focus();
|
|
|
|
|
|
2015-02-08 18:34:28 +00:00
|
|
|
// Try using mouse position
|
2019-09-18 16:17:45 +00:00
|
|
|
if (
|
2020-09-01 16:32:12 +00:00
|
|
|
pickerBootArgs.mouse &&
|
2019-09-18 16:17:45 +00:00
|
|
|
typeof vAPI.mouseClick.x === 'number' &&
|
|
|
|
|
vAPI.mouseClick.x > 0
|
|
|
|
|
) {
|
|
|
|
|
if ( filtersFrom(vAPI.mouseClick.x, vAPI.mouseClick.y) !== 0 ) {
|
2015-02-08 18:34:28 +00:00
|
|
|
showDialog();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// No mouse position available, use suggested target
|
2020-09-01 16:32:12 +00:00
|
|
|
const target = pickerBootArgs.target || '';
|
2018-11-06 18:11:03 +00:00
|
|
|
const pos = target.indexOf('\t');
|
2018-08-15 11:58:42 +00:00
|
|
|
if ( pos === -1 ) { return; }
|
|
|
|
|
|
2018-11-06 18:11:03 +00:00
|
|
|
const srcAttrMap = {
|
2015-02-08 18:34:28 +00:00
|
|
|
'a': 'href',
|
2016-04-15 16:27:53 +00:00
|
|
|
'audio': 'src',
|
2015-02-10 15:50:47 +00:00
|
|
|
'embed': 'src',
|
2016-04-15 16:27:53 +00:00
|
|
|
'iframe': 'src',
|
|
|
|
|
'img': 'src',
|
2015-02-08 18:34:28 +00:00
|
|
|
'video': 'src',
|
|
|
|
|
};
|
2018-11-06 18:11:03 +00:00
|
|
|
const tagName = target.slice(0, pos);
|
|
|
|
|
const url = target.slice(pos + 1);
|
|
|
|
|
const attr = srcAttrMap[tagName];
|
|
|
|
|
if ( attr === undefined ) { return; }
|
|
|
|
|
const elems = document.getElementsByTagName(tagName);
|
2018-11-06 18:20:44 +00:00
|
|
|
for ( const elem of elems ) {
|
2018-11-06 18:11:03 +00:00
|
|
|
if ( elem === pickerRoot ) { continue; }
|
|
|
|
|
const src = elem[attr];
|
|
|
|
|
if ( typeof src !== 'string' ) { continue; }
|
2020-09-01 16:32:12 +00:00
|
|
|
if ( (src !== url) && (src !== '' || url !== 'about:blank') ) {
|
2018-11-06 18:11:03 +00:00
|
|
|
continue;
|
|
|
|
|
}
|
2020-09-01 16:32:12 +00:00
|
|
|
elem.scrollIntoView({ behavior: 'smooth', block: 'start' });
|
2016-04-15 16:27:53 +00:00
|
|
|
filtersFrom(elem);
|
2015-02-08 18:34:28 +00:00
|
|
|
showDialog({ modifier: true });
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-06-17 17:49:43 +00:00
|
|
|
|
|
|
|
|
// A target was specified, but it wasn't found: abort.
|
|
|
|
|
stopPicker();
|
2015-02-08 18:34:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
const onDialogMessage = function(msg) {
|
|
|
|
|
switch ( msg.what ) {
|
|
|
|
|
case 'dialogInit':
|
|
|
|
|
startPicker();
|
|
|
|
|
break;
|
|
|
|
|
case 'dialogPreview':
|
|
|
|
|
filterToDOMInterface.preview(msg.state);
|
|
|
|
|
break;
|
|
|
|
|
case 'dialogCreate':
|
|
|
|
|
filterToDOMInterface.queryAll(msg);
|
|
|
|
|
filterToDOMInterface.preview(true, true);
|
|
|
|
|
stopPicker();
|
|
|
|
|
break;
|
|
|
|
|
case 'dialogPick':
|
|
|
|
|
unpausePicker();
|
|
|
|
|
break;
|
|
|
|
|
case 'dialogQuit':
|
|
|
|
|
filterToDOMInterface.preview(false);
|
|
|
|
|
stopPicker();
|
|
|
|
|
break;
|
|
|
|
|
case 'dialogSetFilter': {
|
|
|
|
|
const resultset = filterToDOMInterface.queryAll(msg);
|
|
|
|
|
highlightElements(resultset.map(a => a.elem), true);
|
|
|
|
|
if ( msg.filter === '!' ) { break; }
|
|
|
|
|
vAPI.MessagingConnection.sendTo(epickerConnectionId, {
|
|
|
|
|
what: 'filterResultset',
|
|
|
|
|
resultset: resultset.map(a => {
|
|
|
|
|
const o = Object.assign({}, a);
|
|
|
|
|
o.elem = undefined;
|
|
|
|
|
return o;
|
|
|
|
|
}),
|
|
|
|
|
});
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
const onConnectionMessage = function(msg) {
|
|
|
|
|
if (
|
|
|
|
|
msg.from !== `epickerDialog-${epickerId}` ||
|
|
|
|
|
msg.to !== `epicker-${epickerId}`
|
|
|
|
|
) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
switch ( msg.what ) {
|
|
|
|
|
case 'connectionRequested':
|
|
|
|
|
epickerConnectionId = msg.id;
|
|
|
|
|
return true;
|
|
|
|
|
case 'connectionBroken':
|
|
|
|
|
stopPicker();
|
|
|
|
|
break;
|
|
|
|
|
case 'connectionMessage':
|
|
|
|
|
onDialogMessage(msg.payload);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2017-10-04 15:14:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2015-02-09 13:03:29 +00:00
|
|
|
pickerRoot = document.createElement('iframe');
|
2020-09-01 16:32:12 +00:00
|
|
|
pickerRoot.setAttribute(vAPI.sessionId, '');
|
2017-10-21 17:43:46 +00:00
|
|
|
|
2018-12-20 22:29:39 +00:00
|
|
|
const pickerCSSStyle = [
|
2017-10-22 12:59:29 +00:00
|
|
|
'background: transparent',
|
|
|
|
|
'border: 0',
|
|
|
|
|
'border-radius: 0',
|
|
|
|
|
'box-shadow: none',
|
|
|
|
|
'display: block',
|
|
|
|
|
'height: 100%',
|
|
|
|
|
'left: 0',
|
|
|
|
|
'margin: 0',
|
|
|
|
|
'max-height: none',
|
|
|
|
|
'max-width: none',
|
2020-04-15 13:46:12 +00:00
|
|
|
'min-height: unset',
|
|
|
|
|
'min-width: unset',
|
2017-10-22 12:59:29 +00:00
|
|
|
'opacity: 1',
|
|
|
|
|
'outline: 0',
|
|
|
|
|
'padding: 0',
|
|
|
|
|
'position: fixed',
|
|
|
|
|
'top: 0',
|
|
|
|
|
'visibility: visible',
|
|
|
|
|
'width: 100%',
|
|
|
|
|
'z-index: 2147483647',
|
|
|
|
|
''
|
|
|
|
|
].join(' !important;');
|
|
|
|
|
pickerRoot.style.cssText = pickerCSSStyle;
|
|
|
|
|
|
2019-01-23 22:11:07 +00:00
|
|
|
// https://github.com/uBlockOrigin/uBlock-issues/issues/393
|
2020-09-01 16:32:12 +00:00
|
|
|
// This needs to be injected as an inline style, *never* as a user style,
|
2019-01-23 22:11:07 +00:00
|
|
|
// hence why it's not added above as part of the pickerCSSStyle
|
|
|
|
|
// properties.
|
|
|
|
|
pickerRoot.style.setProperty('pointer-events', 'auto', 'important');
|
|
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
const pickerCSS = `
|
|
|
|
|
[${vAPI.sessionId}] {
|
|
|
|
|
${pickerCSSStyle}
|
|
|
|
|
}
|
|
|
|
|
[${vAPI.sessionId}-clickblind] {
|
|
|
|
|
pointer-events: none !important;
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
const pickerRootLoaded = new Promise(resolve => {
|
|
|
|
|
pickerRoot.addEventListener('load', ( ) => { resolve(); }, { once: true });
|
|
|
|
|
});
|
|
|
|
|
document.documentElement.append(pickerRoot);
|
|
|
|
|
|
|
|
|
|
const results = await Promise.all([
|
|
|
|
|
vAPI.messaging.send('elementPicker', { what: 'elementPickerArguments' }),
|
|
|
|
|
pickerRootLoaded,
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
pickerBootArgs = results[0];
|
|
|
|
|
|
|
|
|
|
// The DOM filterer will not be present when cosmetic filtering is
|
|
|
|
|
// disabled.
|
|
|
|
|
if (
|
|
|
|
|
pickerBootArgs.zap !== true &&
|
|
|
|
|
vAPI.domFilterer instanceof Object === false
|
|
|
|
|
) {
|
|
|
|
|
pickerRoot.remove();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Restore net filter union data if origin is the same.
|
|
|
|
|
const eprom = pickerBootArgs.eprom || null;
|
|
|
|
|
if ( eprom !== null && eprom.lastNetFilterSession === lastNetFilterSession ) {
|
|
|
|
|
lastNetFilterHostname = eprom.lastNetFilterHostname || '';
|
|
|
|
|
lastNetFilterUnion = eprom.lastNetFilterUnion || '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const frameDoc = pickerRoot.contentDocument;
|
|
|
|
|
|
|
|
|
|
// Provide an id users can use as anchor to personalize uBO's element
|
|
|
|
|
// picker style properties.
|
|
|
|
|
frameDoc.documentElement.id = 'ublock0-epicker';
|
|
|
|
|
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/2240
|
|
|
|
|
// https://github.com/uBlockOrigin/uBlock-issues/issues/170
|
|
|
|
|
// Remove the already declared inline style tag: we will create a new
|
|
|
|
|
// one based on the removed one, and replace the old one.
|
|
|
|
|
const style = frameDoc.createElement('style');
|
|
|
|
|
style.textContent = pickerBootArgs.frameCSS;
|
|
|
|
|
frameDoc.head.appendChild(style);
|
|
|
|
|
|
|
|
|
|
pickerBody = frameDoc.body;
|
|
|
|
|
pickerBody.setAttribute('lang', navigator.language);
|
|
|
|
|
pickerBody.classList.toggle('zap', pickerBootArgs.zap === true);
|
|
|
|
|
|
|
|
|
|
svgRoot = frameDoc.createElementNS('http://www.w3.org/2000/svg', 'svg');
|
|
|
|
|
svgOcean = frameDoc.createElementNS('http://www.w3.org/2000/svg', 'path');
|
|
|
|
|
svgRoot.append(svgOcean);
|
|
|
|
|
svgIslands = frameDoc.createElementNS('http://www.w3.org/2000/svg', 'path');
|
|
|
|
|
svgRoot.append(svgIslands);
|
|
|
|
|
pickerBody.append(svgRoot);
|
|
|
|
|
|
|
|
|
|
dialog = frameDoc.createElement('iframe');
|
|
|
|
|
pickerBody.append(dialog);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
highlightElements([], true);
|
2015-02-09 13:03:29 +00:00
|
|
|
|
2016-04-03 12:34:28 +00:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1529
|
2017-10-21 17:43:46 +00:00
|
|
|
// In addition to inline styles, harden the element picker styles by using
|
|
|
|
|
// dedicated CSS rules.
|
2020-09-01 16:32:12 +00:00
|
|
|
vAPI.userStylesheet.add(pickerCSS);
|
2017-10-22 12:59:29 +00:00
|
|
|
vAPI.userStylesheet.apply();
|
2016-04-03 12:34:28 +00:00
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
vAPI.shutdown.add(stopPicker);
|
|
|
|
|
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/3497
|
|
|
|
|
// https://github.com/uBlockOrigin/uBlock-issues/issues/1215
|
|
|
|
|
// Instantiate isolated element picker dialog.
|
|
|
|
|
if ( pickerBootArgs.zap === true ) {
|
|
|
|
|
startPicker();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-08 19:14:24 +00:00
|
|
|
// https://github.com/gorhill/uBlock/issues/2060
|
2017-10-21 17:43:46 +00:00
|
|
|
vAPI.domFilterer.excludeNode(pickerRoot);
|
2016-10-08 19:14:24 +00:00
|
|
|
|
2020-09-01 16:32:12 +00:00
|
|
|
if ( await vAPI.messaging.extend() !== true ) { return; }
|
|
|
|
|
vAPI.MessagingConnection.addListener(onConnectionMessage);
|
|
|
|
|
|
|
|
|
|
dialog.contentWindow.location = `${pickerBootArgs.dialogURL}&epid=${epickerId}`;
|
2015-01-18 07:12:39 +00:00
|
|
|
|
2014-07-13 00:32:44 +00:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
})();
|
2018-05-03 13:55:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
|
|
DO NOT:
|
|
|
|
|
- Remove the following code
|
|
|
|
|
- Add code beyond the following code
|
|
|
|
|
Reason:
|
|
|
|
|
- https://github.com/gorhill/uBlock/pull/3721
|
|
|
|
|
- uBO never uses the return value from injected content scripts
|
|
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
void 0;
|