2014-06-24 00:42:43 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2016-05-03 14:22:48 +02:00
|
|
|
uBlock Origin - a browser extension to block requests.
|
2018-09-03 20:06:49 +02:00
|
|
|
Copyright (C) 2014-present Raymond Hill
|
2014-06-24 00:42:43 +02: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-11-05 19:48:42 +01:00
|
|
|
'use strict';
|
|
|
|
|
2014-12-12 23:59:47 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
import contextMenu from './contextmenu.js';
|
|
|
|
import cosmeticFilteringEngine from './cosmetic-filtering.js';
|
2021-08-02 15:23:48 +02:00
|
|
|
import io from './assets.js';
|
2021-07-29 01:48:38 +02:00
|
|
|
import µb from './background.js';
|
2021-07-25 16:55:35 +02:00
|
|
|
import { hostnameFromURI } from './uri-utils.js';
|
2021-07-29 01:48:38 +02:00
|
|
|
import { redirectEngine } from './redirect-engine.js';
|
|
|
|
|
|
|
|
import {
|
|
|
|
permanentFirewall,
|
|
|
|
sessionFirewall,
|
|
|
|
permanentSwitches,
|
|
|
|
sessionSwitches,
|
|
|
|
permanentURLFiltering,
|
|
|
|
sessionURLFiltering,
|
2021-08-03 18:19:25 +02:00
|
|
|
} from './filtering-engines.js';
|
2019-06-26 13:47:14 +02:00
|
|
|
|
2021-07-25 16:55:35 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/******************************************************************************/
|
2014-12-12 23:59:47 +01:00
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/405
|
2014-12-14 14:57:00 +01:00
|
|
|
// Be more flexible with whitelist syntax
|
|
|
|
|
|
|
|
// Any special regexp char will be escaped
|
2019-06-25 17:57:14 +02:00
|
|
|
const whitelistDirectiveEscape = /[-\/\\^$+?.()|[\]{}]/g;
|
2014-12-14 14:57:00 +01:00
|
|
|
|
|
|
|
// All `*` will be expanded into `.*`
|
2019-06-25 17:57:14 +02:00
|
|
|
const whitelistDirectiveEscapeAsterisk = /\*/g;
|
2014-12-14 14:57:00 +01:00
|
|
|
|
2016-11-06 22:51:19 +01:00
|
|
|
// Remember encountered regexps for reuse.
|
2019-06-25 17:57:14 +02:00
|
|
|
const directiveToRegexpMap = new Map();
|
2016-11-06 22:51:19 +01:00
|
|
|
|
2014-12-14 14:57:00 +01:00
|
|
|
// Probably manually entered whitelist directive
|
2019-06-25 17:57:14 +02:00
|
|
|
const isHandcraftedWhitelistDirective = function(directive) {
|
2016-11-06 22:51:19 +01:00
|
|
|
return directive.startsWith('/') && directive.endsWith('/') ||
|
|
|
|
directive.indexOf('/') !== -1 && directive.indexOf('*') !== -1;
|
2014-12-14 23:21:59 +01:00
|
|
|
};
|
|
|
|
|
2019-06-25 17:57:14 +02:00
|
|
|
const matchDirective = function(url, hostname, directive) {
|
2016-11-06 22:51:19 +01:00
|
|
|
// Directive is a plain hostname.
|
2014-12-14 14:57:00 +01:00
|
|
|
if ( directive.indexOf('/') === -1 ) {
|
2015-12-15 16:40:40 +01:00
|
|
|
return hostname.endsWith(directive) &&
|
|
|
|
(hostname.length === directive.length ||
|
|
|
|
hostname.charAt(hostname.length - directive.length - 1) === '.');
|
2014-12-14 23:21:59 +01:00
|
|
|
}
|
2016-11-06 22:51:19 +01:00
|
|
|
// Match URL exactly.
|
2019-06-25 17:57:14 +02:00
|
|
|
if (
|
|
|
|
directive.startsWith('/') === false &&
|
|
|
|
directive.indexOf('*') === -1
|
|
|
|
) {
|
2014-12-14 23:21:59 +01:00
|
|
|
return url === directive;
|
2014-08-02 17:40:27 +02:00
|
|
|
}
|
2016-11-06 22:51:19 +01:00
|
|
|
// Transpose into a regular expression.
|
2019-06-25 17:57:14 +02:00
|
|
|
let re = directiveToRegexpMap.get(directive);
|
2016-11-06 22:51:19 +01:00
|
|
|
if ( re === undefined ) {
|
2019-06-25 17:57:14 +02:00
|
|
|
let reStr;
|
2016-11-06 22:51:19 +01:00
|
|
|
if ( directive.startsWith('/') && directive.endsWith('/') ) {
|
|
|
|
reStr = directive.slice(1, -1);
|
|
|
|
} else {
|
|
|
|
reStr = directive.replace(whitelistDirectiveEscape, '\\$&')
|
|
|
|
.replace(whitelistDirectiveEscapeAsterisk, '.*');
|
|
|
|
}
|
|
|
|
re = new RegExp(reStr);
|
|
|
|
directiveToRegexpMap.set(directive, re);
|
|
|
|
}
|
2014-12-14 23:21:59 +01:00
|
|
|
return re.test(url);
|
2014-12-14 14:57:00 +01:00
|
|
|
};
|
|
|
|
|
2019-06-25 17:57:14 +02:00
|
|
|
const matchBucket = function(url, hostname, bucket, start) {
|
2016-11-06 22:51:19 +01:00
|
|
|
if ( bucket ) {
|
2019-06-25 17:57:14 +02:00
|
|
|
for ( let i = start || 0, n = bucket.length; i < n; i++ ) {
|
2016-11-06 22:51:19 +01:00
|
|
|
if ( matchDirective(url, hostname, bucket[i]) ) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
};
|
|
|
|
|
2014-12-14 14:57:00 +01:00
|
|
|
/******************************************************************************/
|
2014-08-02 17:40:27 +02:00
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.getNetFilteringSwitch = function(url) {
|
2021-07-25 16:55:35 +02:00
|
|
|
const hostname = hostnameFromURI(url);
|
2019-06-25 17:57:14 +02:00
|
|
|
let key = hostname;
|
2014-12-14 14:57:00 +01:00
|
|
|
for (;;) {
|
2019-06-25 17:57:14 +02:00
|
|
|
if ( matchBucket(url, hostname, this.netWhitelist.get(key)) !== -1 ) {
|
2016-11-06 22:51:19 +01:00
|
|
|
return false;
|
2014-12-14 14:57:00 +01:00
|
|
|
}
|
2019-06-25 17:57:14 +02:00
|
|
|
const pos = key.indexOf('.');
|
2016-11-06 22:51:19 +01:00
|
|
|
if ( pos === -1 ) { break; }
|
2014-12-14 23:21:59 +01:00
|
|
|
key = key.slice(pos + 1);
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
2019-06-25 17:57:14 +02:00
|
|
|
if ( matchBucket(url, hostname, this.netWhitelist.get('//')) !== -1 ) {
|
2016-11-06 22:51:19 +01:00
|
|
|
return false;
|
|
|
|
}
|
2014-06-24 00:42:43 +02:00
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.toggleNetFilteringSwitch = function(url, scope, newState) {
|
2019-06-25 17:57:14 +02:00
|
|
|
const currentState = this.getNetFilteringSwitch(url);
|
2014-06-24 00:42:43 +02:00
|
|
|
if ( newState === undefined ) {
|
|
|
|
newState = !currentState;
|
|
|
|
}
|
|
|
|
if ( newState === currentState ) {
|
|
|
|
return currentState;
|
|
|
|
}
|
2014-08-02 17:40:27 +02:00
|
|
|
|
2019-06-25 17:57:14 +02:00
|
|
|
const netWhitelist = this.netWhitelist;
|
|
|
|
const pos = url.indexOf('#');
|
|
|
|
let targetURL = pos !== -1 ? url.slice(0, pos) : url;
|
2021-07-25 16:55:35 +02:00
|
|
|
const targetHostname = hostnameFromURI(targetURL);
|
2019-06-25 17:57:14 +02:00
|
|
|
let key = targetHostname;
|
|
|
|
let directive = scope === 'page' ? targetURL : targetHostname;
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2014-12-14 23:21:59 +01:00
|
|
|
// Add to directive list
|
2014-12-14 14:57:00 +01:00
|
|
|
if ( newState === false ) {
|
2019-06-25 17:57:14 +02:00
|
|
|
let bucket = netWhitelist.get(key);
|
|
|
|
if ( bucket === undefined ) {
|
|
|
|
bucket = [];
|
|
|
|
netWhitelist.set(key, bucket);
|
2014-12-14 14:57:00 +01:00
|
|
|
}
|
2019-06-25 17:57:14 +02:00
|
|
|
bucket.push(directive);
|
2014-08-02 17:40:27 +02:00
|
|
|
this.saveWhitelist();
|
2014-06-24 00:42:43 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-06-25 17:57:14 +02:00
|
|
|
// Remove all directives which cause current URL to be whitelisted
|
2014-12-14 14:57:00 +01:00
|
|
|
for (;;) {
|
2019-06-25 17:57:14 +02:00
|
|
|
const bucket = netWhitelist.get(key);
|
2016-11-06 22:51:19 +01:00
|
|
|
if ( bucket !== undefined ) {
|
2019-06-25 17:57:14 +02:00
|
|
|
let i;
|
2016-11-06 22:51:19 +01:00
|
|
|
for (;;) {
|
|
|
|
i = matchBucket(targetURL, targetHostname, bucket, i);
|
|
|
|
if ( i === -1 ) { break; }
|
|
|
|
directive = bucket.splice(i, 1)[0];
|
2014-12-14 14:57:00 +01:00
|
|
|
if ( isHandcraftedWhitelistDirective(directive) ) {
|
2019-06-25 17:57:14 +02:00
|
|
|
netWhitelist.get('#').push(`# ${directive}`);
|
2014-12-14 14:57:00 +01:00
|
|
|
}
|
|
|
|
}
|
2016-11-06 22:51:19 +01:00
|
|
|
if ( bucket.length === 0 ) {
|
2019-06-25 17:57:14 +02:00
|
|
|
netWhitelist.delete(key);
|
2014-12-14 14:57:00 +01:00
|
|
|
}
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
2019-06-25 17:57:14 +02:00
|
|
|
const pos = key.indexOf('.');
|
2016-11-06 22:51:19 +01:00
|
|
|
if ( pos === -1 ) { break; }
|
2014-12-14 23:21:59 +01:00
|
|
|
key = key.slice(pos + 1);
|
2014-08-02 17:40:27 +02:00
|
|
|
}
|
2019-06-25 17:57:14 +02:00
|
|
|
const bucket = netWhitelist.get('//');
|
2016-11-06 22:51:19 +01:00
|
|
|
if ( bucket !== undefined ) {
|
2019-06-25 17:57:14 +02:00
|
|
|
let i;
|
2016-11-06 22:51:19 +01:00
|
|
|
for (;;) {
|
|
|
|
i = matchBucket(targetURL, targetHostname, bucket, i);
|
|
|
|
if ( i === -1 ) { break; }
|
|
|
|
directive = bucket.splice(i, 1)[0];
|
|
|
|
if ( isHandcraftedWhitelistDirective(directive) ) {
|
2019-06-25 17:57:14 +02:00
|
|
|
netWhitelist.get('#').push(`# ${directive}`);
|
2016-11-06 22:51:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( bucket.length === 0 ) {
|
2019-06-25 17:57:14 +02:00
|
|
|
netWhitelist.delete('//');
|
2016-11-06 22:51:19 +01:00
|
|
|
}
|
|
|
|
}
|
2014-08-02 17:40:27 +02:00
|
|
|
this.saveWhitelist();
|
|
|
|
return true;
|
2014-06-24 00:42:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-12-08 18:37:35 +01:00
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.arrayFromWhitelist = function(whitelist) {
|
2019-05-18 20:20:05 +02:00
|
|
|
const out = new Set();
|
2019-06-25 17:57:14 +02:00
|
|
|
for ( const bucket of whitelist.values() ) {
|
2019-05-18 20:20:05 +02:00
|
|
|
for ( const directive of bucket ) {
|
|
|
|
out.add(directive);
|
2014-06-24 01:23:36 +02:00
|
|
|
}
|
|
|
|
}
|
2019-05-18 20:20:05 +02:00
|
|
|
return Array.from(out).sort((a, b) => a.localeCompare(b));
|
|
|
|
};
|
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.stringFromWhitelist = function(whitelist) {
|
2019-05-18 20:20:05 +02:00
|
|
|
return this.arrayFromWhitelist(whitelist).join('\n');
|
2014-06-24 01:23:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.whitelistFromArray = function(lines) {
|
2019-06-25 17:57:14 +02:00
|
|
|
const whitelist = new Map();
|
2016-11-06 22:51:19 +01:00
|
|
|
|
|
|
|
// Comment bucket must always be ready to be used.
|
2019-06-25 17:57:14 +02:00
|
|
|
whitelist.set('#', []);
|
2016-11-06 22:51:19 +01:00
|
|
|
|
|
|
|
// New set of directives, scrap cached data.
|
|
|
|
directiveToRegexpMap.clear();
|
|
|
|
|
2019-06-25 17:57:14 +02:00
|
|
|
for ( let line of lines ) {
|
|
|
|
line = line.trim();
|
2016-12-26 17:35:37 +01:00
|
|
|
|
2015-05-04 23:10:55 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/171
|
|
|
|
// Skip empty lines
|
2019-06-25 17:57:14 +02:00
|
|
|
if ( line === '' ) { continue; }
|
|
|
|
|
|
|
|
let key, directive;
|
2015-05-04 23:10:55 +02:00
|
|
|
|
2014-12-14 14:57:00 +01:00
|
|
|
// Don't throw out commented out lines: user might want to fix them
|
2015-12-15 16:40:40 +01:00
|
|
|
if ( line.startsWith('#') ) {
|
2014-12-14 14:57:00 +01:00
|
|
|
key = '#';
|
|
|
|
directive = line;
|
|
|
|
}
|
|
|
|
// Plain hostname
|
|
|
|
else if ( line.indexOf('/') === -1 ) {
|
2018-03-12 13:28:07 +01:00
|
|
|
if ( this.reWhitelistBadHostname.test(line) ) {
|
2014-12-14 14:57:00 +01:00
|
|
|
key = '#';
|
|
|
|
directive = '# ' + line;
|
|
|
|
} else {
|
|
|
|
key = directive = line;
|
|
|
|
}
|
2014-08-02 17:40:27 +02:00
|
|
|
}
|
2016-11-06 22:51:19 +01:00
|
|
|
// Regex-based (ensure it is valid)
|
2019-06-25 17:57:14 +02:00
|
|
|
else if (
|
|
|
|
line.length > 2 &&
|
|
|
|
line.startsWith('/') &&
|
|
|
|
line.endsWith('/')
|
|
|
|
) {
|
2016-11-06 22:51:19 +01:00
|
|
|
key = '//';
|
|
|
|
directive = line;
|
|
|
|
try {
|
2019-06-25 17:57:14 +02:00
|
|
|
const re = new RegExp(directive.slice(1, -1));
|
2016-11-06 22:51:19 +01:00
|
|
|
directiveToRegexpMap.set(directive, re);
|
|
|
|
} catch(ex) {
|
|
|
|
key = '#';
|
|
|
|
directive = '# ' + line;
|
|
|
|
}
|
|
|
|
}
|
2014-12-14 14:57:00 +01:00
|
|
|
// URL, possibly wildcarded: there MUST be at least one hostname
|
|
|
|
// label (or else it would be just impossible to make an efficient
|
|
|
|
// dict.
|
|
|
|
else {
|
2019-06-25 17:57:14 +02:00
|
|
|
const matches = this.reWhitelistHostnameExtractor.exec(line);
|
2014-12-14 14:57:00 +01:00
|
|
|
if ( !matches || matches.length !== 2 ) {
|
|
|
|
key = '#';
|
|
|
|
directive = '# ' + line;
|
|
|
|
} else {
|
|
|
|
key = matches[1];
|
|
|
|
directive = line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-04 23:10:55 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/171
|
|
|
|
// Skip empty keys
|
2016-11-06 22:51:19 +01:00
|
|
|
if ( key === '' ) { continue; }
|
2015-05-04 23:10:55 +02:00
|
|
|
|
2014-12-14 14:57:00 +01:00
|
|
|
// Be sure this stays fixed:
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/185
|
2019-06-25 17:57:14 +02:00
|
|
|
let bucket = whitelist.get(key);
|
|
|
|
if ( bucket === undefined ) {
|
|
|
|
bucket = [];
|
|
|
|
whitelist.set(key, bucket);
|
2014-08-02 17:40:27 +02:00
|
|
|
}
|
2019-06-25 17:57:14 +02:00
|
|
|
bucket.push(directive);
|
2014-08-02 17:40:27 +02:00
|
|
|
}
|
2014-12-14 14:57:00 +01:00
|
|
|
return whitelist;
|
2014-06-24 00:42:43 +02:00
|
|
|
};
|
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.whitelistFromString = function(s) {
|
2019-06-25 17:57:14 +02:00
|
|
|
return this.whitelistFromArray(s.split('\n'));
|
|
|
|
};
|
|
|
|
|
2018-04-20 22:09:41 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/3717
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.reWhitelistBadHostname = /[^a-z0-9.\-_\[\]:]/;
|
|
|
|
µb.reWhitelistHostnameExtractor = /([a-z0-9.\-_\[\]]+)(?::[\d*]+)?\/(?:[^\x00-\x20\/]|$)[^\x00-\x20]*$/;
|
2016-12-26 17:35:37 +01:00
|
|
|
|
2016-11-06 22:51:19 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.changeUserSettings = function(name, value) {
|
2018-09-03 20:06:49 +02:00
|
|
|
let us = this.userSettings;
|
2016-01-17 19:30:43 +01:00
|
|
|
|
|
|
|
// Return all settings if none specified.
|
2014-06-25 00:29:55 +02:00
|
|
|
if ( name === undefined ) {
|
2016-01-17 19:30:43 +01:00
|
|
|
us = JSON.parse(JSON.stringify(us));
|
2021-07-29 01:48:38 +02:00
|
|
|
us.noCosmeticFiltering = sessionSwitches.evaluate('no-cosmetic-filtering', '*') === 1;
|
|
|
|
us.noLargeMedia = sessionSwitches.evaluate('no-large-media', '*') === 1;
|
|
|
|
us.noRemoteFonts = sessionSwitches.evaluate('no-remote-fonts', '*') === 1;
|
|
|
|
us.noScripting = sessionSwitches.evaluate('no-scripting', '*') === 1;
|
|
|
|
us.noCSPReports = sessionSwitches.evaluate('no-csp-reports', '*') === 1;
|
2016-01-17 19:30:43 +01:00
|
|
|
return us;
|
2014-06-25 00:29:55 +02:00
|
|
|
}
|
|
|
|
|
2018-09-03 20:06:49 +02:00
|
|
|
if ( typeof name !== 'string' || name === '' ) { return; }
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
if ( value === undefined ) {
|
2016-01-17 19:30:43 +01:00
|
|
|
return us[name];
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pre-change
|
|
|
|
switch ( name ) {
|
2016-01-17 19:30:43 +01:00
|
|
|
case 'largeMediaSize':
|
|
|
|
if ( typeof value !== 'number' ) {
|
|
|
|
value = parseInt(value, 10) || 0;
|
|
|
|
}
|
|
|
|
value = Math.ceil(Math.max(value, 0));
|
|
|
|
break;
|
2015-05-21 20:15:17 +02:00
|
|
|
default:
|
|
|
|
break;
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
|
|
|
|
2016-01-17 19:30:43 +01:00
|
|
|
// Change -- but only if the user setting actually exists.
|
2021-03-02 19:00:56 +01:00
|
|
|
const mustSave = us.hasOwnProperty(name) && value !== us[name];
|
2016-01-17 19:30:43 +01:00
|
|
|
if ( mustSave ) {
|
|
|
|
us[name] = value;
|
|
|
|
}
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
// Post-change
|
|
|
|
switch ( name ) {
|
2016-11-05 19:48:42 +01:00
|
|
|
case 'advancedUserEnabled':
|
|
|
|
if ( value === true ) {
|
2020-05-12 18:08:32 +02:00
|
|
|
us.popupPanelSections |= 0b11111;
|
2016-11-05 19:48:42 +01:00
|
|
|
}
|
|
|
|
break;
|
2017-01-18 19:17:47 +01:00
|
|
|
case 'autoUpdate':
|
|
|
|
this.scheduleAssetUpdater(value ? 7 * 60 * 1000 : 0);
|
|
|
|
break;
|
2021-03-02 19:00:56 +01:00
|
|
|
case 'cnameUncloakEnabled':
|
|
|
|
if ( vAPI.net.canUncloakCnames === true ) {
|
|
|
|
vAPI.net.setOptions({ cnameUncloakEnabled: value === true });
|
|
|
|
}
|
|
|
|
break;
|
2015-05-21 20:15:17 +02:00
|
|
|
case 'collapseBlocked':
|
|
|
|
if ( value === false ) {
|
2021-07-29 01:48:38 +02:00
|
|
|
cosmeticFilteringEngine.removeFromSelectorCache('*', 'net');
|
2015-05-21 20:15:17 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'contextMenuEnabled':
|
2021-07-29 01:48:38 +02:00
|
|
|
contextMenu.update(null);
|
2015-05-21 20:15:17 +02:00
|
|
|
break;
|
2015-06-02 15:27:18 +02:00
|
|
|
case 'hyperlinkAuditingDisabled':
|
2016-10-19 16:20:26 +02:00
|
|
|
if ( this.privacySettingsSupported ) {
|
|
|
|
vAPI.browserSettings.set({ 'hyperlinkAuditing': !value });
|
|
|
|
}
|
2015-06-02 15:27:18 +02:00
|
|
|
break;
|
2016-01-17 19:30:43 +01:00
|
|
|
case 'noCosmeticFiltering':
|
|
|
|
case 'noLargeMedia':
|
|
|
|
case 'noRemoteFonts':
|
2018-09-01 00:47:02 +02:00
|
|
|
case 'noScripting':
|
2017-10-19 15:35:28 +02:00
|
|
|
case 'noCSPReports':
|
2018-09-03 20:06:49 +02:00
|
|
|
let switchName;
|
|
|
|
switch ( name ) {
|
|
|
|
case 'noCosmeticFiltering':
|
|
|
|
switchName = 'no-cosmetic-filtering'; break;
|
|
|
|
case 'noLargeMedia':
|
|
|
|
switchName = 'no-large-media'; break;
|
|
|
|
case 'noRemoteFonts':
|
|
|
|
switchName = 'no-remote-fonts'; break;
|
|
|
|
case 'noScripting':
|
|
|
|
switchName = 'no-scripting'; break;
|
|
|
|
case 'noCSPReports':
|
|
|
|
switchName = 'no-csp-reports'; break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ( switchName === undefined ) { break; }
|
|
|
|
let switchState = value ? 1 : 0;
|
2021-07-29 01:48:38 +02:00
|
|
|
sessionSwitches.toggle(switchName, '*', switchState);
|
|
|
|
if ( permanentSwitches.toggle(switchName, '*', switchState) ) {
|
2017-10-19 15:35:28 +02:00
|
|
|
this.saveHostnameSwitches();
|
|
|
|
}
|
|
|
|
break;
|
2015-06-01 21:03:22 +02:00
|
|
|
case 'prefetchingDisabled':
|
2016-10-19 16:20:26 +02:00
|
|
|
if ( this.privacySettingsSupported ) {
|
|
|
|
vAPI.browserSettings.set({ 'prefetching': !value });
|
|
|
|
}
|
2015-06-01 21:03:22 +02:00
|
|
|
break;
|
2021-09-15 13:40:32 +02:00
|
|
|
case 'webrtcIPAddressHidden':
|
|
|
|
if ( this.privacySettingsSupported ) {
|
|
|
|
vAPI.browserSettings.set({ 'webrtcIPAddress': !value });
|
|
|
|
}
|
|
|
|
break;
|
2015-05-21 20:15:17 +02:00
|
|
|
default:
|
|
|
|
break;
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
|
|
|
|
2016-01-17 19:30:43 +01:00
|
|
|
if ( mustSave ) {
|
|
|
|
this.saveUserSettings();
|
|
|
|
}
|
2014-06-24 00:42:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2018-03-19 15:25:03 +01:00
|
|
|
|
|
|
|
// https://www.reddit.com/r/uBlockOrigin/comments/8524cf/my_custom_scriptlets_doesnt_work_what_am_i_doing/
|
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.changeHiddenSettings = function(hs) {
|
2019-06-25 17:57:14 +02:00
|
|
|
const mustReloadResources =
|
2018-03-19 15:25:03 +01:00
|
|
|
hs.userResourcesLocation !== this.hiddenSettings.userResourcesLocation;
|
|
|
|
this.hiddenSettings = hs;
|
|
|
|
this.saveHiddenSettings();
|
|
|
|
if ( mustReloadResources ) {
|
2021-08-02 15:23:48 +02:00
|
|
|
redirectEngine.invalidateResourcesSelfie(io);
|
2018-03-19 15:25:03 +01:00
|
|
|
this.loadRedirectResources();
|
|
|
|
}
|
2019-08-10 16:57:24 +02:00
|
|
|
this.fireDOMEvent('hiddenSettingsChanged');
|
2018-03-19 15:25:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.elementPickerExec = async function(
|
2020-12-05 21:26:29 +01:00
|
|
|
tabId,
|
|
|
|
frameId,
|
|
|
|
targetElement,
|
|
|
|
zap = false,
|
|
|
|
) {
|
2018-07-20 13:11:21 +02:00
|
|
|
if ( vAPI.isBehindTheSceneTabId(tabId) ) { return; }
|
|
|
|
|
2019-09-18 18:17:45 +02:00
|
|
|
this.epickerArgs.target = targetElement || '';
|
|
|
|
this.epickerArgs.zap = zap;
|
2018-08-15 02:14:13 +02:00
|
|
|
|
2018-12-20 23:29:39 +01:00
|
|
|
// https://github.com/uBlockOrigin/uBlock-issues/issues/40
|
|
|
|
// The element picker needs this library
|
2020-12-05 21:26:29 +01:00
|
|
|
if ( zap !== true ) {
|
|
|
|
vAPI.tabs.executeScript(tabId, {
|
|
|
|
file: '/lib/diff/swatinem_diff.js',
|
|
|
|
runAt: 'document_end',
|
|
|
|
});
|
|
|
|
}
|
2019-09-16 22:17:48 +02:00
|
|
|
|
|
|
|
await vAPI.tabs.executeScript(tabId, {
|
2020-09-01 18:32:12 +02:00
|
|
|
file: '/js/scriptlets/epicker.js',
|
2020-12-05 21:26:29 +01:00
|
|
|
frameId,
|
2019-09-18 18:17:45 +02:00
|
|
|
runAt: 'document_end',
|
2019-09-16 22:17:48 +02:00
|
|
|
});
|
2018-12-20 23:29:39 +01:00
|
|
|
|
2018-08-15 02:14:13 +02:00
|
|
|
// https://github.com/uBlockOrigin/uBlock-issues/issues/168
|
|
|
|
// Force activate the target tab once the element picker has been
|
|
|
|
// injected.
|
2019-09-16 22:17:48 +02:00
|
|
|
vAPI.tabs.select(tabId);
|
2014-09-28 18:05:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-10-06 20:02:44 +02:00
|
|
|
|
2016-09-27 14:31:12 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/2033
|
|
|
|
// Always set own rules, trying to be fancy to avoid setting seemingly
|
|
|
|
// (but not really) redundant rules led to this issue.
|
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.toggleFirewallRule = function(details) {
|
2019-06-26 13:47:14 +02:00
|
|
|
let { srcHostname, desHostname, requestType, action } = details;
|
|
|
|
|
|
|
|
if ( action !== 0 ) {
|
2021-07-29 01:48:38 +02:00
|
|
|
sessionFirewall.setCell(
|
2019-06-26 13:47:14 +02:00
|
|
|
srcHostname,
|
|
|
|
desHostname,
|
|
|
|
requestType,
|
|
|
|
action
|
|
|
|
);
|
2014-10-06 20:02:44 +02:00
|
|
|
} else {
|
2021-07-29 01:48:38 +02:00
|
|
|
sessionFirewall.unsetCell(
|
2019-06-26 13:47:14 +02:00
|
|
|
srcHostname,
|
|
|
|
desHostname,
|
|
|
|
requestType
|
|
|
|
);
|
2014-10-06 20:02:44 +02:00
|
|
|
}
|
2014-12-17 16:32:50 +01:00
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/731#issuecomment-73937469
|
2015-02-11 21:48:39 +01:00
|
|
|
if ( details.persist ) {
|
2019-06-26 13:47:14 +02:00
|
|
|
if ( action !== 0 ) {
|
2021-07-29 01:48:38 +02:00
|
|
|
permanentFirewall.setCell(
|
2019-06-26 13:47:14 +02:00
|
|
|
srcHostname,
|
|
|
|
desHostname,
|
|
|
|
requestType,
|
|
|
|
action
|
|
|
|
);
|
2015-02-11 21:48:39 +01:00
|
|
|
} else {
|
2021-07-29 01:48:38 +02:00
|
|
|
permanentFirewall.unsetCell(
|
2019-06-26 13:47:14 +02:00
|
|
|
srcHostname,
|
|
|
|
desHostname,
|
|
|
|
requestType,
|
|
|
|
action
|
|
|
|
);
|
2015-02-11 21:48:39 +01:00
|
|
|
}
|
|
|
|
this.savePermanentFirewallRules();
|
|
|
|
}
|
|
|
|
|
2016-05-28 15:18:36 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1662
|
|
|
|
// Flush all cached `net` cosmetic filters if we are dealing with a
|
2016-05-28 15:19:35 +02:00
|
|
|
// collapsible type: any of the cached entries could be a resource on the
|
2016-05-28 15:18:36 +02:00
|
|
|
// target page.
|
|
|
|
if (
|
|
|
|
(srcHostname !== '*') &&
|
2019-06-26 13:47:14 +02:00
|
|
|
(
|
|
|
|
requestType === '*' ||
|
|
|
|
requestType === 'image' ||
|
|
|
|
requestType === '3p' ||
|
|
|
|
requestType === '3p-frame'
|
|
|
|
)
|
2016-05-28 15:18:36 +02:00
|
|
|
) {
|
|
|
|
srcHostname = '*';
|
|
|
|
}
|
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/420
|
2021-07-29 01:48:38 +02:00
|
|
|
cosmeticFilteringEngine.removeFromSelectorCache(srcHostname, 'net');
|
2019-08-10 16:57:24 +02:00
|
|
|
|
2020-12-12 20:33:49 +01:00
|
|
|
if ( details.tabId === undefined ) { return; }
|
|
|
|
|
2019-08-10 16:57:24 +02:00
|
|
|
if ( requestType.startsWith('3p') ) {
|
|
|
|
this.updateToolbarIcon(details.tabId, 0b100);
|
|
|
|
}
|
2020-12-12 20:33:49 +01:00
|
|
|
|
|
|
|
if ( requestType === '3p' && action === 3 ) {
|
|
|
|
vAPI.tabs.executeScript(details.tabId, {
|
|
|
|
file: '/js/scriptlets/load-3p-css.js',
|
|
|
|
allFrames: true,
|
|
|
|
runAt: 'document_idle',
|
|
|
|
});
|
|
|
|
}
|
2014-12-28 16:07:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.toggleURLFilteringRule = function(details) {
|
|
|
|
let changed = sessionURLFiltering.setRule(
|
2015-05-21 20:15:17 +02:00
|
|
|
details.context,
|
|
|
|
details.url,
|
|
|
|
details.type,
|
|
|
|
details.action
|
|
|
|
);
|
2018-09-03 20:06:49 +02:00
|
|
|
if ( changed === false ) { return; }
|
2015-05-21 20:15:17 +02:00
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
cosmeticFilteringEngine.removeFromSelectorCache(details.context, 'net');
|
2015-05-22 14:05:55 +02:00
|
|
|
|
2018-09-03 20:06:49 +02:00
|
|
|
if ( details.persist !== true ) { return; }
|
2015-05-22 14:05:55 +02:00
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
changed = permanentURLFiltering.setRule(
|
2015-05-22 14:05:55 +02:00
|
|
|
details.context,
|
|
|
|
details.url,
|
|
|
|
details.type,
|
|
|
|
details.action
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( changed ) {
|
|
|
|
this.savePermanentFirewallRules();
|
|
|
|
}
|
2015-05-21 20:15:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.toggleHostnameSwitch = function(details) {
|
2022-02-22 14:44:09 +01:00
|
|
|
const newState = typeof details.state === 'boolean'
|
|
|
|
? details.state
|
|
|
|
: sessionSwitches.evaluateZ(details.name, details.hostname) === false;
|
2021-07-29 01:48:38 +02:00
|
|
|
let changed = sessionSwitches.toggleZ(
|
2018-09-03 20:06:49 +02:00
|
|
|
details.name,
|
|
|
|
details.hostname,
|
|
|
|
!!details.deep,
|
2022-02-22 14:44:09 +01:00
|
|
|
newState
|
2018-09-03 20:06:49 +02:00
|
|
|
);
|
|
|
|
if ( changed === false ) { return; }
|
2015-04-05 18:03:14 +02:00
|
|
|
|
|
|
|
// Take action if needed
|
2016-01-17 19:30:43 +01:00
|
|
|
switch ( details.name ) {
|
2019-08-10 16:57:24 +02:00
|
|
|
case 'no-scripting':
|
|
|
|
this.updateToolbarIcon(details.tabId, 0b100);
|
|
|
|
break;
|
2021-10-11 13:07:41 +02:00
|
|
|
case 'no-cosmetic-filtering': {
|
2022-02-22 14:44:09 +01:00
|
|
|
const scriptlet = newState ? 'cosmetic-off' : 'cosmetic-on';
|
2021-10-11 13:07:41 +02:00
|
|
|
vAPI.tabs.executeScript(details.tabId, {
|
|
|
|
file: `/js/scriptlets/${scriptlet}.js`,
|
|
|
|
allFrames: true,
|
|
|
|
});
|
2016-01-17 19:30:43 +01:00
|
|
|
break;
|
2021-10-11 13:07:41 +02:00
|
|
|
}
|
2016-01-17 19:30:43 +01:00
|
|
|
case 'no-large-media':
|
2019-06-25 17:57:14 +02:00
|
|
|
const pageStore = this.pageStoreFromTabId(details.tabId);
|
2017-09-12 17:43:43 +02:00
|
|
|
if ( pageStore !== null ) {
|
2022-02-22 14:44:09 +01:00
|
|
|
pageStore.temporarilyAllowLargeMediaElements(!newState);
|
2016-01-17 19:30:43 +01:00
|
|
|
}
|
|
|
|
break;
|
2015-04-05 18:03:14 +02:00
|
|
|
}
|
2018-09-03 20:06:49 +02:00
|
|
|
|
|
|
|
if ( details.persist !== true ) { return; }
|
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
changed = permanentSwitches.toggleZ(
|
2018-09-03 20:06:49 +02:00
|
|
|
details.name,
|
|
|
|
details.hostname,
|
|
|
|
!!details.deep,
|
2022-02-22 14:44:09 +01:00
|
|
|
newState
|
2018-09-03 20:06:49 +02:00
|
|
|
);
|
|
|
|
if ( changed ) {
|
|
|
|
this.saveHostnameSwitches();
|
|
|
|
}
|
2015-04-05 18:03:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.blockingModeFromHostname = function(hn) {
|
2019-08-10 16:57:24 +02:00
|
|
|
let bits = 0;
|
2021-07-29 01:48:38 +02:00
|
|
|
if ( sessionSwitches.evaluateZ('no-scripting', hn) ) {
|
2019-08-10 16:57:24 +02:00
|
|
|
bits |= 0b00000010;
|
|
|
|
}
|
|
|
|
if ( this.userSettings.advancedUserEnabled ) {
|
2021-07-29 01:48:38 +02:00
|
|
|
if ( sessionFirewall.evaluateCellZY(hn, '*', '3p') === 1 ) {
|
2019-08-10 16:57:24 +02:00
|
|
|
bits |= 0b00000100;
|
|
|
|
}
|
2021-07-29 01:48:38 +02:00
|
|
|
if ( sessionFirewall.evaluateCellZY(hn, '*', '3p-script') === 1 ) {
|
2019-08-10 16:57:24 +02:00
|
|
|
bits |= 0b00001000;
|
|
|
|
}
|
2021-07-29 01:48:38 +02:00
|
|
|
if ( sessionFirewall.evaluateCellZY(hn, '*', '3p-frame') === 1 ) {
|
2019-08-10 16:57:24 +02:00
|
|
|
bits |= 0b00010000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return bits;
|
|
|
|
};
|
|
|
|
|
2021-10-07 20:41:29 +02:00
|
|
|
{
|
2019-08-11 19:55:39 +02:00
|
|
|
const parse = function() {
|
2021-07-29 01:48:38 +02:00
|
|
|
const s = µb.hiddenSettings.blockingProfiles;
|
2019-08-11 19:55:39 +02:00
|
|
|
const profiles = [];
|
|
|
|
s.split(/\s+/).forEach(s => {
|
|
|
|
let pos = s.indexOf('/');
|
|
|
|
if ( pos === -1 ) {
|
|
|
|
pos = s.length;
|
|
|
|
}
|
|
|
|
const bits = parseInt(s.slice(0, pos), 2);
|
|
|
|
if ( isNaN(bits) ) { return; }
|
|
|
|
const color = s.slice(pos + 1);
|
|
|
|
profiles.push({ bits, color: color !== '' ? color : '#666' });
|
|
|
|
});
|
2021-07-29 01:48:38 +02:00
|
|
|
µb.liveBlockingProfiles = profiles;
|
|
|
|
µb.blockingProfileColorCache.clear();
|
2019-08-11 19:55:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
parse();
|
|
|
|
|
|
|
|
self.addEventListener('hiddenSettingsChanged', ( ) => { parse(); });
|
2021-10-07 20:41:29 +02:00
|
|
|
}
|
2019-06-26 13:47:14 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
2022-09-10 17:55:19 +02:00
|
|
|
|
|
|
|
µb.pageURLFromMaybeDocumentBlockedURL = function(pageURL) {
|
|
|
|
if ( pageURL.startsWith(vAPI.getURL('/document-blocked.html?')) ) {
|
|
|
|
try {
|
|
|
|
const url = new URL(pageURL);
|
|
|
|
return JSON.parse(url.searchParams.get('details')).url;
|
|
|
|
} catch(ex) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pageURL;
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|