mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-10 07:07:47 +01:00
Fix-update Economist & FT (layout)
This commit is contained in:
parent
d8a00f1f1c
commit
6691b162a4
2 changed files with 4 additions and 2 deletions
|
@ -10,6 +10,7 @@ var ext_api = (typeof browser === 'object') ? browser : chrome;
|
|||
const restrictions = {
|
||||
'barrons.com': /.+barrons\.com\/(amp\/)?article(s)?\/.+/,
|
||||
'elcomercio.pe': /.+\/elcomercio.pe\/.+((\w)+(\-)+){3,}.+/,
|
||||
'ft.com': /.+\.ft\.com\/content\/.+/,
|
||||
'gestion.pe': /.+\/gestion.pe\/.+((\w)+(\-)+){3,}.+/,
|
||||
'quora.com': /^((?!quora\.com\/search\?q=).)*$/,
|
||||
'seekingalpha.com': /.+seekingalpha\.com\/article\/.+/,
|
||||
|
|
|
@ -275,8 +275,9 @@ else if (matchDomain("economist.com")) {
|
|||
const subscribe = document.querySelector('.subscription-proposition');
|
||||
const wrapper = document.getElementById('bottom-page-wrapper');
|
||||
removeDOMElement(subscribe, wrapper);
|
||||
const adverts = document.querySelectorAll('.advert');
|
||||
removeDOMElement(...adverts);
|
||||
const adverts = document.querySelectorAll('div.advert');
|
||||
for (let advert of adverts)
|
||||
advert.setAttribute('style', 'display:none');
|
||||
window.setTimeout(function () {
|
||||
const paywall = document.querySelector('.layout-article-regwall'); ;
|
||||
if (paywall) {
|
||||
|
|
Loading…
Reference in a new issue