Fix-update Discover Magazine
This commit is contained in:
parent
ca67d11ce2
commit
679e3c594d
@ -679,15 +679,6 @@ ext_api.webRequest.onBeforeSendHeaders.addListener(function(details) {
|
||||
});
|
||||
}
|
||||
|
||||
// remove cookies Discover Magazine
|
||||
if (matchUrlDomain('ctfassets.net', details.url) && matchUrlDomain('discovermagazine.com', header_referer) && isSiteEnabled({url: 'https://www.discovermagazine.com'})) {
|
||||
ext_api.cookies.getAll({domain: 'discovermagazine.com'}, function(cookies) {
|
||||
for (let cookie of cookies) {
|
||||
ext_api.cookies.remove({url: (cookie.secure ? "https://" : "http://") + cookie.domain + cookie.path, name: cookie.name});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// block external javascript for custom sites (optional)
|
||||
var domain_blockjs_ext = matchUrlDomain(block_js_custom_ext, header_referer);
|
||||
if (domain_blockjs_ext && !matchUrlDomain(domain_blockjs_ext, details.url) && details.url.match(/(\.js$|\.js\?|\/json\?)/) && isSiteEnabled({url: header_referer})) {
|
||||
|
@ -7,6 +7,7 @@ Add Esprit (France)
|
||||
Add The Spectator USA
|
||||
Remove Aftonbladet.se (obsolete)
|
||||
Fix-update CharlieHebdo.fr (captcha)
|
||||
Fix-update Discover Magazine
|
||||
Fix-update El Mercurio & La Segunda (mobile)
|
||||
Fix-update Harper's Magazine
|
||||
Fix-update Mexico News Daily
|
||||
|
@ -1296,8 +1296,13 @@ else if (matchDomain(["mercuriovalpo.cl", "estrellavalpo.cl"])) {
|
||||
}
|
||||
|
||||
else if (matchDomain("discovermagazine.com")) {
|
||||
let banner = document.querySelector('div.hWOjDZ, div.qa7yll-1');
|
||||
removeDOMElement(banner);
|
||||
window.setTimeout(function () {
|
||||
let mammoth = document.querySelector('.iXVGnF');
|
||||
if (mammoth)
|
||||
window.location.reload();
|
||||
let banner = document.querySelector('div.hWOjDZ, div.qa7yll-1');
|
||||
removeDOMElement(banner);
|
||||
}, 1000); // Delay (in milliseconds)
|
||||
}
|
||||
|
||||
else if (domain = matchDomain(["fresnobee.com", "sacbee.com"])) {
|
||||
|
@ -89,6 +89,7 @@
|
||||
"*://*.diariosur.es/*",
|
||||
"*://*.diariovasco.com/*",
|
||||
"*://*.digiday.com/*",
|
||||
"*://*.discovermagazine.com/*",
|
||||
"*://*.dn.se/*",
|
||||
"*://*.dvhn.nl/*",
|
||||
"*://*.economist.com/*",
|
||||
@ -342,7 +343,6 @@
|
||||
"*://*.bwbx.io/*",
|
||||
"*://*.cedsdigital.it/*",
|
||||
"*://*.corriereobjects.it/*",
|
||||
"*://*.ctfassets.net/*",
|
||||
"*://*.cxense.com/*",
|
||||
"*://*.emol.cl/*",
|
||||
"*://*.epimg.net/*",
|
||||
|
Loading…
x
Reference in New Issue
Block a user