mirror of https://github.com/gorhill/uBlock.git
Pull reference Easylist assests from own repo
This commit is contained in:
parent
ae5717ea72
commit
2f646dbdb0
|
@ -176,12 +176,10 @@
|
|||
"group": "ads",
|
||||
"title": "EasyList",
|
||||
"contentURL": [
|
||||
"https://secure.fanboy.co.nz/easylist.txt",
|
||||
"https://easylist.to/easylist/easylist.txt",
|
||||
"https://ublockorigin.github.io/uAssets/thirdparties/easylist.txt",
|
||||
"assets/thirdparties/easylist-downloads.adblockplus.org/easylist.txt"
|
||||
],
|
||||
"cdnURLs": [
|
||||
"https://secure.fanboy.co.nz/easylist.txt",
|
||||
"https://gitcdn.link/cdn/uBlockOrigin/uAssetsCDN/main/thirdparties/easylist.txt",
|
||||
"https://cdn.jsdelivr.net/gh/uBlockOrigin/uAssetsCDN@main/thirdparties/easylist.txt",
|
||||
"https://cdn.statically.io/gh/uBlockOrigin/uAssetsCDN/main/thirdparties/easylist.txt",
|
||||
|
@ -228,12 +226,10 @@
|
|||
"group": "privacy",
|
||||
"title": "EasyPrivacy",
|
||||
"contentURL": [
|
||||
"https://secure.fanboy.co.nz/easyprivacy.txt",
|
||||
"https://easylist.to/easylist/easyprivacy.txt",
|
||||
"https://ublockorigin.github.io/uAssets/thirdparties/easyprivacy.txt",
|
||||
"assets/thirdparties/easylist-downloads.adblockplus.org/easyprivacy.txt"
|
||||
],
|
||||
"cdnURLs": [
|
||||
"https://secure.fanboy.co.nz/easyprivacy.txt",
|
||||
"https://gitcdn.link/cdn/uBlockOrigin/uAssetsCDN/main/thirdparties/easyprivacy.txt",
|
||||
"https://cdn.jsdelivr.net/gh/uBlockOrigin/uAssetsCDN@main/thirdparties/easyprivacy.txt",
|
||||
"https://cdn.statically.io/gh/uBlockOrigin/uAssetsCDN/main/thirdparties/easyprivacy.txt",
|
||||
|
|
|
@ -1754,7 +1754,9 @@
|
|||
const regexFromArg = arg => {
|
||||
if ( arg === '' ) { return /^/; }
|
||||
if ( /^\/.*\/$/.test(arg) ) { return new RegExp(arg.slice(1, -1)); }
|
||||
return new RegExp(arg.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'));
|
||||
return new RegExp(
|
||||
arg.replace(/[.+?^${}()|[\]\\]/g, '\\$&').replace(/\*+/g, '.*?')
|
||||
);
|
||||
};
|
||||
const reM3u = regexFromArg(m3uPattern);
|
||||
const reUrl = regexFromArg(urlPattern);
|
||||
|
|
Loading…
Reference in New Issue