mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-10 03:41:57 +01:00
Fix Quora+ (banner)
This commit is contained in:
parent
9636dadcaf
commit
237ccbbd13
2 changed files with 9 additions and 0 deletions
|
@ -3,6 +3,7 @@ Changelog Bypass Paywalls Clean - Firefox
|
|||
|
||||
Post-release
|
||||
Fix Nikkei Asian Review (cookies)
|
||||
Fix Quora+ (banner)
|
||||
Fix Repubblica sites (re-enable Googlebot)
|
||||
Add rules for new sites (opt-in to custom sites)
|
||||
Check for update version on startup/options (now opt-out)
|
||||
|
|
|
@ -2355,6 +2355,14 @@ else if (matchDomain('nytimes.com')) {
|
|||
}
|
||||
}
|
||||
|
||||
else if (matchDomain('quora.com')) {
|
||||
let overlay = document.querySelector('div.qu-zIndex--inline_overlay');
|
||||
removeDOMElement(overlay);
|
||||
let mask_image = document.querySelector('div.ePDXbR');
|
||||
if (mask_image)
|
||||
mask_image.classList.remove('ePDXbR');
|
||||
}
|
||||
|
||||
else if (matchDomain('qz.com')) {
|
||||
let url = window.location.href;
|
||||
window.setTimeout(function () {
|
||||
|
|
Loading…
Reference in a new issue