Fix-update American Banker

master
magnolia1234 2021-05-04 22:13:01 +02:00
parent 65162b8972
commit bbf31581d1
4 changed files with 10 additions and 5 deletions

View File

@ -3,6 +3,7 @@ Changelog Bypass Paywalls Clean - Chrome
Post-release
Add The Economic Times (text/India)
Fix-update American Banker
Fix-update El Mercurio (Chile)
* v2.1.9.0 (2021-05-02)

View File

@ -1559,9 +1559,13 @@ if (matchDomain('adweek.com')) {
}
else if (matchDomain('americanbanker.com')) {
let paywall = document.querySelector('.embargo-content');
if (paywall)
paywall.classList.remove('embargo-content');
let inline_gate = document.querySelector('.inline-gate');
if (inline_gate) {
inline_gate.classList.remove('inline-gate');
let inline_gated = document.querySelectorAll('.inline-gated');
for (let elem of inline_gated)
elem.classList.remove('inline-gated');
}
}
else if (matchDomain('americanaffairsjournal.org')) {

View File

@ -30,5 +30,5 @@
"webRequestBlocking",
"<all_urls>"
],
"version": "2.1.9.2"
"version": "2.1.9.3"
}

View File

@ -497,5 +497,5 @@
"*://*.wallkit.net/*",
"*://*.wsj.net/*"
],
"version": "2.1.9.2"
"version": "2.1.9.3"
}