mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-04 12:00:10 +00:00
1481 lines
68 KiB
JavaScript
1481 lines
68 KiB
JavaScript
//"use strict";
|
||
var ext_api = (typeof browser === 'object') ? browser : chrome;
|
||
var domain;
|
||
|
||
// clean local storage of sites (with an exemption for hold-list)
|
||
var arr_localstorage_hold = ['elmundo.es', 'nknews.org', 'nrz.de', 'seekingalpha.com', 'sfchronicle.com', 'thehindu.com', 'thetimes.co.uk', 'waz.de', 'wp.de', 'wr.de'];
|
||
if (!matchDomain(arr_localstorage_hold)){
|
||
window.localStorage.clear();
|
||
}
|
||
|
||
// listen to responses from background script
|
||
ext_api.runtime.onMessage.addListener(function (message, sender) {
|
||
// setCookie opt-in
|
||
if (message.optIn) {
|
||
let hostname = window.location.hostname;
|
||
if (hostname.endsWith(".com.au") || hostname.endsWith(".net.au")) {
|
||
// Australian Provincial Newspapers
|
||
domain = window.location.hostname.replace('www.', '');
|
||
let au_apn_script = document.querySelector('script[src^="https://media.apnarm.net.au/"]');
|
||
if (au_apn_script || (domain = matchDomain(['news-mail.com.au', 'frasercoastchronicle.com.au', 'gladstoneobserver.com.au', 'dailyexaminer.com.au', 'dailymercury.com.au', 'themorningbulletin.com.au', 'sunshinecoastdaily.com.au', 'gympietimes.com.au', 'northernstar.com.au', 'qt.com.au', 'thechronicle.com.au', 'warwickdailynews.com.au']))) {
|
||
if (!cookieExists('subscribed')) {
|
||
setCookie('subscribed', 'true', domain, '/', 14);
|
||
}
|
||
|
||
}
|
||
} else {
|
||
if (matchDomain('bostonglobe.com')) {
|
||
if (!cookieExists('s_fid')) {
|
||
let s_fid = genHexString(16) + '-' + genHexString(16);
|
||
setCookie('s_fid', s_fid, 'bostonglobe.com', '/', 14);
|
||
}
|
||
} else if (domain = matchDomain(['independent.ie', 'belfasttelegraph.co.uk'])) {
|
||
if (!cookieExists('subscriber')) {
|
||
setCookie('subscriber', '{"subscriptionStatus": true}', domain, '/', 14);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
});
|
||
|
||
// ask for opt-in confirmation
|
||
ext_api.runtime.sendMessage({request: 'optin'});
|
||
|
||
// Content workarounds/domain
|
||
|
||
if (matchDomain("thesaturdaypaper.com.au")) {
|
||
let paywall = document.querySelector('div.paywall-hard-always-show');
|
||
removeDOMElement(paywall);
|
||
}
|
||
|
||
else if (domain = matchDomain(["brisbanetimes.com.au", "smh.com.au", "theage.com.au", "watoday.com.au"])) {
|
||
let url = window.location.href;
|
||
let for_subscribers = document.querySelector('meta[content^="FOR SUBSCRIBERS"]');
|
||
if (for_subscribers) {
|
||
window.setTimeout(function () {
|
||
window.location.href = url.replace('www.', 'amp.');
|
||
}, 500); // Delay (in milliseconds)
|
||
} else if (url.includes('amp.' + domain)) {
|
||
let subscr_sections = document.querySelectorAll('div[subscriptions-section="content"]');
|
||
for (let subscr_section of subscr_sections) {
|
||
subscr_section.removeAttribute('subscriptions-section');
|
||
}
|
||
}
|
||
}
|
||
|
||
else if (window.location.hostname.endsWith(".com.au") || window.location.hostname.endsWith(".net.au")) {
|
||
// Australian Community Media newspapers
|
||
let au_cm_sites = ['bendigoadvertiser.com.au', 'bordermail.com.au', 'canberratimes.com.au', 'centralwesterndaily.com.au', 'dailyadvertiser.com.au', 'dailyliberal.com.au', 'examiner.com.au', 'illawarramercury.com.au', 'newcastleherald.com.au', 'northerndailyleader.com.au', 'portnews.com.au', 'standard.net.au', 'theadvocate.com.au', 'thecourier.com.au', 'westernadvocate.com.au'];
|
||
let au_piano_script = document.querySelector('script[src="https://cdn-au.piano.io/api/tinypass.min.js"]');
|
||
if (matchDomain(au_cm_sites) || au_piano_script) {
|
||
const subscribe_truncate = document.querySelector('.subscribe-truncate');
|
||
if (subscribe_truncate)
|
||
subscribe_truncate.classList.remove('subscribe-truncate');
|
||
const subscriber_hiders = document.querySelectorAll('.subscriber-hider');
|
||
for (let subscriber_hider of subscriber_hiders) {
|
||
subscriber_hider.classList.remove('subscriber-hider');
|
||
}
|
||
} else if (window.location.hostname.endsWith(".com.au")) {
|
||
// Australia News Corp
|
||
let au_nc_sites = ['adelaidenow.com.au', 'cairnspost.com.au', 'couriermail.com.au', 'dailytelegraph.com.au', 'geelongadvertiser.com.au', 'goldcoastbulletin.com.au', 'heraldsun.com.au', 'ntnews.com.au', 'theaustralian.com.au', 'themercury.com.au', 'townsvillebulletin.com.au', 'weeklytimesnow.com.au'];
|
||
if (matchDomain(au_nc_sites) && window.location.hostname.startsWith('amp.')) {
|
||
let div_hidden_all = document.querySelectorAll('div[amp-access="access AND subscriber"]');
|
||
for (let div_hidden of div_hidden_all)
|
||
div_hidden.removeAttribute('amp-access-hide');
|
||
} else {
|
||
// Australian Seven West Media
|
||
let swm_script = document.querySelector('script[src^="https://s.thewest.com.au"]');
|
||
if (matchDomain("thewest.com.au") || swm_script) {
|
||
window.setTimeout(function () {
|
||
let breach_screen = document.querySelector('div[data-testid*="BreachScreen"]');
|
||
if (breach_screen) {
|
||
let scripts = document.querySelectorAll('script');
|
||
let json_script;
|
||
for (let script of scripts) {
|
||
if (script.innerText.includes('window.PAGE_DATA ='))
|
||
json_script = script;
|
||
continue;
|
||
}
|
||
if (json_script) {
|
||
let json_text = json_script.innerHTML.split('window.PAGE_DATA =')[1].split('</script')[0];
|
||
json_text = json_text.replace(/undefined/g, '"undefined"');
|
||
let json_article = JSON.parse(json_text);
|
||
let json_pub = Object.entries(json_article)[0][1].data.result.resolution.publication;
|
||
let json_content = json_pub.content.blocks;
|
||
//let json_video = json_pub.mainVideo;
|
||
let url = window.location.href;
|
||
let url_loaded = json_pub._self;
|
||
if (!url.includes(url_loaded.slice(-10)))
|
||
document.location.reload(true);
|
||
let article = '';
|
||
let div_content = document.createElement('div');
|
||
for (let par of json_content) {
|
||
if (par.kind === 'text') {
|
||
article = article + '<p>' + par.text + '</p>';
|
||
} else if (par.kind === 'subhead') {
|
||
article = article + '<h2>' + par.text + '</h2>';
|
||
} else if (par.kind === 'pull-quote') {
|
||
article = article + '<i>' + (par.attribution ? par.attribution + ': ' : '') + par.text + '</i>';
|
||
} else if (par.kind === 'embed') {
|
||
if (par.reference.includes('https://omny.fm/') || par.reference.includes('https://docdro.id/')) {
|
||
article = article + '<embed src="' + par.reference + '" style="height:500px; width:100%" frameborder="0"></embed>';
|
||
} else {
|
||
article = article + 'Embed: ' + '<a href="' + par.reference + '" target="_blank">' + par.reference + '</a>';
|
||
console.log('embed: ' + par.reference);
|
||
}
|
||
} else if (par.kind === 'unordered-list') {
|
||
if (par.items) {
|
||
article = article + '<ul>';
|
||
for (let item of par.items)
|
||
if (item.text && item.intentions[0].href) {
|
||
article = article + '<li><a href="' + item.intentions[0].href + '">' + item.text + '</a></li>';
|
||
}
|
||
article = article + '</ul>';
|
||
}
|
||
} else if (par.kind === 'inline') {
|
||
if (par.asset.kind === 'image') {
|
||
article = article + '<figure><img src="' + par.asset.original.reference + '" style="width:100%">';
|
||
article = article + '<figcaption>' +
|
||
par.asset.captionText + ' ' + par.asset.copyrightByline +
|
||
((par.asset.copyrightCredit && par.asset.captionText !== par.asset.copyrightByline) ? '/' + par.asset.copyrightCredit : '') +
|
||
'<figcaption></figure>';
|
||
}
|
||
} else {
|
||
article = article + '<p>' + par.text + '</p>';
|
||
console.log(par.kind);
|
||
}
|
||
}
|
||
let content = document.querySelector('div[class*="StyledArticleContent"]');
|
||
let parser = new DOMParser();
|
||
let par_html = parser.parseFromString('<div>' + article + '</div>', 'text/html');
|
||
let par_dom = par_html.querySelector('div');
|
||
if (content) {
|
||
content.appendChild(par_dom);
|
||
} else {
|
||
par_dom.setAttribute('style', 'margin: 20px;');
|
||
breach_screen.parentElement.insertBefore(par_dom, breach_screen);
|
||
}
|
||
}
|
||
removeDOMElement(breach_screen);
|
||
}
|
||
}, 1000); // Delay (in milliseconds)
|
||
let header_advert = document.querySelector('.headerAdvertisement');
|
||
if (header_advert)
|
||
header_advert.setAttribute('style', 'display: none;');
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
else if (matchDomain('rep.repubblica.it')) {
|
||
window.setTimeout(function () {
|
||
if (window.location.href.includes('/pwa/')) {
|
||
window.location.href = window.location.href.replace('/pwa/', '/ws/detail/');
|
||
}
|
||
}, 500); // Delay (in milliseconds)
|
||
if (window.location.href.includes('/ws/detail/')) {
|
||
const paywall = document.querySelector('.paywall[subscriptions-section="content"]');
|
||
if (paywall) {
|
||
paywall.removeAttribute('subscriptions-section');
|
||
const preview = document.querySelector('div[subscriptions-section="content-not-granted"]');
|
||
removeDOMElement(preview);
|
||
}
|
||
}
|
||
}
|
||
|
||
else if (matchDomain("americanbanker.com")) {
|
||
const paywall = document.querySelector('.embargo-content');
|
||
if (paywall)
|
||
paywall.classList.remove('embargo-content');
|
||
}
|
||
|
||
else if (matchDomain('telegraaf.nl')) {
|
||
if (window.location.href.startsWith('https://www.telegraaf.nl/error?ref=/')) {
|
||
window.location.href = window.location.href.split('&')[0].replace('error?ref=/', '');
|
||
}
|
||
let refresh = document.querySelector('div[id="content"] > meta[http-equiv="refresh"]');
|
||
if (refresh) {
|
||
window.setTimeout(function () {
|
||
window.location.reload(true);
|
||
}, 500);
|
||
}
|
||
let article_wrapper = document.querySelector('.ArticlePageWrapper__uid');
|
||
let spotx_banner = document.querySelector('.ArticleBodyBlocks__inlineArticleSpotXBanner');
|
||
let paywall = document.querySelector('.PopupBackdrop__block');
|
||
removeDOMElement(spotx_banner, paywall);
|
||
let premium = document.querySelector('.PremiumLabelWithLine__body');
|
||
let article_id = article_wrapper ? article_wrapper.innerText : '123';
|
||
let article_body_done = document.querySelector('#articleBody' + article_id);
|
||
if (premium && !article_body_done) {
|
||
let article_body_old = document.querySelector('[id^="articleBody"]');
|
||
removeDOMElement(article_body_old);
|
||
let json = document.querySelector('script[type="application/ld+json"][data-react-helmet="true"]');
|
||
if (json) {
|
||
var json_text = JSON.parse(json.text).articleBody;
|
||
let article_body = document.querySelector('section.TextArticlePage__bodyText');
|
||
if (article_body) {
|
||
let div_main = document.createElement("div");
|
||
div_main.setAttribute('id', 'articleBody' + article_id);
|
||
let div_elem = document.createElement("div");
|
||
div_elem.setAttribute('data-element', 'articleBodyBlocks');
|
||
let text_array = json_text.split('\n\n');
|
||
text_array.forEach(p_text => {
|
||
let p_div = document.createElement("p");
|
||
p_div.setAttribute('class', 'ArticleBodyBlocks__paragraph ArticleBodyBlocks__paragraph--nieuws');
|
||
p_div.innerText = p_text;
|
||
div_elem.appendChild(p_div);
|
||
});
|
||
div_main.appendChild(div_elem);
|
||
article_body.appendChild(div_main);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
else if (matchDomain(['ad.nl', 'bd.nl', 'ed.nl', 'tubantia.nl', 'bndestem.nl', 'pzc.nl', 'destentor.nl', 'gelderlander.nl'])) {
|
||
let paywall = document.querySelector('.article__component.article__component--paywall-module-notification');
|
||
let modal_login = document.querySelector('.modal--login');
|
||
removeDOMElement(paywall, modal_login);
|
||
}
|
||
|
||
else if (matchDomain("washingtonpost.com")) {
|
||
let leaderboard = document.querySelector('#leaderboard-wrapper');
|
||
let adverts = document.querySelectorAll('div[data-qa="article-body-ad"]');
|
||
removeDOMElement(leaderboard, ...adverts);
|
||
if (location.href.includes('/gdpr-consent/')) {
|
||
let free_button = document.querySelector('.gdpr-consent-container .continue-btn.button.free');
|
||
if (free_button)
|
||
free_button.click();
|
||
window.setTimeout(function () {
|
||
let gdprcheckbox = document.querySelector('.gdpr-consent-container .consent-page:not(.hide) #agree');
|
||
if (gdprcheckbox) {
|
||
gdprcheckbox.checked = true;
|
||
gdprcheckbox.dispatchEvent(new Event('change'));
|
||
document.querySelector('.gdpr-consent-container .consent-page:not(.hide) .continue-btn.button.accept-consent').click();
|
||
}
|
||
}, 300); // Delay (in milliseconds)
|
||
}
|
||
}
|
||
|
||
else if (matchDomain("wsj.com") && !matchDomain("cn.wsj.com")) {
|
||
if (location.href.includes('/articles/')) {
|
||
const close_button = document.querySelector('div.close-btn[role="button"]');
|
||
if (close_button)
|
||
close_button.click();
|
||
}
|
||
let wsj_ads = document.querySelectorAll('div.wsj-ad');
|
||
removeDOMElement(...wsj_ads);
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
let url = window.location.href;
|
||
let snippet = document.querySelector('.snippet-promotion');
|
||
let wsj_pro = document.querySelector('meta[name="page.site"][content="wsjpro"]');
|
||
if (snippet || wsj_pro) {
|
||
window.location.href = window.location.href.replace('wsj.com', 'wsj.com/amp').replace('#refreshed', '');
|
||
}
|
||
});
|
||
}
|
||
|
||
else if (matchDomain("sloanreview.mit.edu")) {
|
||
const read_more = document.querySelector('.btn-read-more');
|
||
if (read_more)
|
||
read_more.click();
|
||
}
|
||
|
||
else if (matchDomain("mexiconewsdaily.com")) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
const sideNotification = document.querySelector('.pigeon-widget-prompt');
|
||
const subMessage = document.querySelector('.sub_message_container');
|
||
const popup = document.querySelector('.popupally-pro-outer-full-width-7-fluid_qemskqa');
|
||
const bgFocusRemoverId = document.getElementById('popup-box-pro-gfcr-7');
|
||
removeDOMElement(sideNotification, subMessage, popup, bgFocusRemoverId);
|
||
});
|
||
}
|
||
|
||
else if (matchDomain("the-american-interest.com")) {
|
||
const counter = document.getElementById('article-counter');
|
||
removeDOMElement(counter);
|
||
}
|
||
|
||
else if (matchDomain("nzherald.co.nz")) {
|
||
let article_content = document.querySelector('.article__content');
|
||
if (article_content) {
|
||
let article_offer = document.querySelector('.article-offer');
|
||
if (article_offer) {
|
||
let css_selector = article_content.querySelectorAll('p')[5].getAttribute('class');
|
||
let hidden_not_pars = article_content.querySelectorAll('.' + css_selector + ':not(p)');
|
||
for (let hidden_not_par of hidden_not_pars) {
|
||
hidden_not_par.classList.remove(css_selector);
|
||
hidden_not_par.removeAttribute('style');
|
||
}
|
||
let hidden_pars = article_content.querySelectorAll('p.' + css_selector);
|
||
let par_html, par_dom;
|
||
let parser = new DOMParser();
|
||
for (let hidden_par of hidden_pars) {
|
||
let par_html = parser.parseFromString('<div style="margin: 10px 0px; font-size: 17px">' + hidden_par.innerHTML + '</div>', 'text/html');
|
||
let par_dom = par_html.querySelector('div');
|
||
article_content.insertBefore(par_dom, hidden_par);
|
||
}
|
||
let first_span = document.querySelector('p > span');
|
||
if (first_span)
|
||
first_span.removeAttribute('class');
|
||
removeDOMElement(article_offer);
|
||
}
|
||
}
|
||
let premium_toaster = document.querySelector('#premium-toaster');
|
||
removeDOMElement(premium_toaster);
|
||
}
|
||
|
||
else if (matchDomain(["parool.nl", "trouw.nl", "volkskrant.nl", "humo.be", "demorgen.be"])) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
let top_banner = document.querySelector('div[data-temptation-position="PAGE_TOP"]');
|
||
let paywall = document.querySelector('div[data-temptation-position="ARTICLE_BOTTOM"]');
|
||
let hidden_section = document.querySelector('div[data-temptation-position="ARTICLE_INLINE"]');
|
||
let overlay = document.querySelector('div[data-temptation-position="PAGE_BOTTOM"]');
|
||
removeDOMElement(top_banner, paywall, hidden_section, overlay);
|
||
});
|
||
}
|
||
|
||
else if (matchDomain("firstthings.com")) {
|
||
const paywall = document.querySelector('.paywall');
|
||
removeDOMElement(paywall);
|
||
}
|
||
|
||
else if (matchDomain("bloomberg.com")) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
let fence = document.querySelector('.fence-body');
|
||
if (fence) {
|
||
fence.classList.remove('fence-body');
|
||
}
|
||
});
|
||
let body_overlay = document.querySelector('body[data-paywall-overlay-status="show"]');
|
||
if (body_overlay)
|
||
body_overlay.removeAttribute('data-paywall-overlay-status');
|
||
let noscroll = document.querySelector('body[class*="noScroll"]');
|
||
if (noscroll)
|
||
removeClassesByPrefix(noscroll, 'noScroll');
|
||
let paywall_overlay = document.querySelector('div#graphics-paywall-overlay');
|
||
let banner = document.getElementById('paywall-banner');
|
||
removeDOMElement(banner, paywall_overlay);
|
||
}
|
||
|
||
else if (matchDomain("bloombergquint.com")) {
|
||
const articlesLeftModal = document.querySelector('.paywall-meter-module__story-paywall-container__1UgCE');
|
||
const paywall = document.getElementById('paywallDmp');
|
||
removeDOMElement(articlesLeftModal, paywall);
|
||
}
|
||
|
||
else if (matchDomain(["medium.com", "towardsdatascience.com"])) {
|
||
window.setTimeout(function () {
|
||
let meter = document.querySelector('[id^="lo-highlight-meter-"]');
|
||
if (meter)
|
||
meter.hidden = true;
|
||
}, 500); // Delay (in milliseconds)
|
||
}
|
||
|
||
else if (matchDomain("ledevoir.com")) {
|
||
const counter = document.querySelector('.popup-msg');
|
||
removeDOMElement(counter);
|
||
}
|
||
|
||
else if (matchDomain('ft.com')) {
|
||
let cookie_banner = document.querySelector('.o-banner__outer');
|
||
let ribbon = document.querySelector('.js-article-ribbon');
|
||
let ads = document.querySelector('.o-ads');
|
||
removeDOMElement(cookie_banner, ribbon, ads);
|
||
}
|
||
|
||
else if (matchDomain("thehindu.com")) {
|
||
if (!localStorage.geo) {
|
||
localStorage.setItem("geo", '{"v":{"clientTcpRtt":20,"longitude":"'+ makeRandomNumber(2) + '.' + makeRandomNumber(5) + '","httpProtocol":"HTTP/2","tlsCipher":"AEAD-AES128-GCM-SHA256","continent":"EU","asn":1234,"clientAcceptEncoding":"gzip, deflate,br","country":"UK","isEUCountry":"1","tlsClientAuth":{"certIssuerDNLegacy":"","certIssuerDN":"","certIssuerDNRFC2253":"","certSubjectDNLegacy":"","certVerified":"NONE","certNotAfter":"","certSubjectDN":"","certFingerprintSHA1":"","certNotBefore":"","certSerial":"","certPresented":"0","certSubjectDNRFC2253":""},"tlsVersion":"TLSv1.3","colo":"DUS","timezone":"Europe/London","edgeRequestKeepAliveStatus":1,"requestPriority":"weight=220;exclusive=1","botManagement":{"staticResource":false,"verifiedBot":false,"score":99},"clientTrustScore":99,"postalCode":"' + makeRandomNumber(4) + '","regionCode":"QR","region":"County","city":"London","latitude":"' + makeRandomNumber(2) + '.' + makeRandomNumber(5) + '"},"e":' + makeRandomNumber(13) + '}');
|
||
}
|
||
let counter = document.querySelector('#test');
|
||
removeDOMElement(counter);
|
||
function hindu_main() {
|
||
document.addEventListener('bpc_event', function (e) {
|
||
if (window) {
|
||
window.Adblock = false;
|
||
window.isNonSubcribed = false;
|
||
}
|
||
})
|
||
}
|
||
insert_script(hindu_main);
|
||
document.dispatchEvent(new CustomEvent('bpc_event', {}));
|
||
}
|
||
|
||
else if (matchDomain("nytimes.com")) {
|
||
function nyt_main() {
|
||
navigator.storage.estimate = undefined;
|
||
webkitRequestFileSystem = function () {};
|
||
}
|
||
insert_script(nyt_main);
|
||
let preview_button = document.querySelector('.css-3s1ce0');
|
||
if (preview_button)
|
||
preview_button.click();
|
||
}
|
||
|
||
else if (matchDomain("economist.com")) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
const subscribe = document.querySelector('.subscription-proposition');
|
||
const wrapper = document.getElementById('bottom-page-wrapper');
|
||
removeDOMElement(subscribe, wrapper);
|
||
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) {
|
||
window.location.reload(true);
|
||
}
|
||
}, 600); // Delay (in milliseconds)
|
||
const p_articles = document.querySelectorAll('p.article__body-text');
|
||
var href;
|
||
for (let p_article of p_articles) {
|
||
const e_anchors = document.querySelectorAll('a');
|
||
href = '';
|
||
for (let e_anchor of e_anchors) {
|
||
if (e_anchor.href) {
|
||
href = e_anchor.href;
|
||
} else {
|
||
e_anchor.href = href;
|
||
}
|
||
}
|
||
}
|
||
});
|
||
}
|
||
|
||
else if (matchDomain("the-tls.co.uk")) {
|
||
const paywall = document.querySelector('.tls-subscriptions-banner__closed-skin');
|
||
removeDOMElement(paywall);
|
||
}
|
||
|
||
else if (matchDomain("caixinglobal.com")) {
|
||
let pay_tips = document.querySelectorAll('.cons-pay-tip');
|
||
for (let pay_tip of pay_tips) {
|
||
pay_tip.removeAttribute('style');
|
||
}
|
||
let appContent = document.getElementById('appContent');
|
||
if (appContent) {
|
||
let hidden_pars = document.querySelectorAll('p:not([style="display:block;"])');
|
||
for (let hidden_par of hidden_pars) {
|
||
hidden_par.setAttribute('style', 'display:block;');
|
||
}
|
||
}
|
||
}
|
||
|
||
else if (matchDomain("nrc.nl")) {
|
||
window.setTimeout(function () {
|
||
let mijnnrc_overlay = document.querySelector('#mijnnrc__modal__overlay');
|
||
let subscribe_bar = document.querySelector('.header__subscribe-bar');
|
||
removeDOMElement(mijnnrc_overlay, subscribe_bar);
|
||
let paywall = document.querySelector('.has-paywall');
|
||
if (paywall)
|
||
paywall.classList.remove("has-paywall");
|
||
let paywall_overlay = document.querySelector('.has-paywall-overlay');
|
||
if (paywall_overlay)
|
||
paywall_overlay.classList.remove("has-paywall-overlay");
|
||
}, 100);
|
||
}
|
||
|
||
else if (matchDomain("scribd.com")) {
|
||
let blurred_pages = document.querySelectorAll('.blurred_page');
|
||
for (let blurred_page of blurred_pages) {
|
||
blurred_page.classList.remove('blurred_page');
|
||
}
|
||
let portal = document.querySelector('.between_page_portal_root');
|
||
let page_module = document.querySelector('.between_page_module');
|
||
let promo = document.querySelector('.auto__doc_page_webpack_doc_page_body_static_promo_study');
|
||
let ad = document.querySelector('.auto__explain_scribd_v2_advertisement');
|
||
removeDOMElement(portal, page_module, promo, ad);
|
||
}
|
||
|
||
else if (matchDomain("thetimes.co.uk")) {
|
||
const block = document.querySelector('.subscription-block');
|
||
const ad_block = document.getElementById('ad-article-inline')
|
||
const ad_header = document.getElementById('sticky-ad-header')
|
||
removeDOMElement(block, ad_block, ad_header);
|
||
}
|
||
|
||
else if (matchDomain("technologyreview.com")) {
|
||
window.setTimeout(function () {
|
||
let body_obscured = document.querySelector('body[class*="body__obscureContent"]');
|
||
if (body_obscured)
|
||
removeClassesByPrefix(body_obscured, 'body__obscureContent');
|
||
let overlay = document.querySelector('div[class*="overlayFooter__wrapper"]');
|
||
if (overlay)
|
||
overlay.setAttribute('style', 'display:none');
|
||
let content_body_hidden = document.querySelector('div[class*="contentBody__contentHidden"]');
|
||
if (content_body_hidden)
|
||
removeClassesByPrefix(content_body_hidden, 'contentBody__contentHidden');
|
||
let content_body_overlay = document.querySelector('div[class*="contentBody__overlay"]');
|
||
if (content_body_overlay)
|
||
content_body_overlay.removeAttribute('class');
|
||
}, 500);
|
||
}
|
||
|
||
else if (matchDomain("asia.nikkei.com")) {
|
||
const popup = document.querySelector('.pw-widget--popup');
|
||
removeDOMElement(popup);
|
||
}
|
||
|
||
else if (matchDomain("hbr.org")) {
|
||
const popup = document.querySelector('.persistent-banner');
|
||
removeDOMElement(popup);
|
||
}
|
||
|
||
else if (matchDomain("techinasia.com")) {
|
||
const paywall = document.querySelector('.paywall-content');
|
||
if (paywall){
|
||
paywall.classList.remove('paywall-content');
|
||
}
|
||
const splash_subscribe = document.querySelector('.splash-subscribe');
|
||
const paywall_hard = document.querySelector('.paywall-hard');
|
||
removeDOMElement(splash_subscribe, paywall_hard);
|
||
}
|
||
|
||
else if (matchDomain("thestar.com")) {
|
||
let meter_banner = document.querySelector('.c-article-meter-banner');
|
||
removeDOMElement(meter_banner);
|
||
let rightrail = document.querySelector('.c-article-body__rightrail');
|
||
if (rightrail)
|
||
rightrail.setAttribute('style', 'display:none;');
|
||
let paywall = document.querySelector('.basic-paywall-new');
|
||
if (paywall) {
|
||
removeDOMElement(paywall);
|
||
let tbcs = document.querySelectorAll('.text-block-container');
|
||
for (let tbc of tbcs) {
|
||
tbc.removeAttribute('style');
|
||
}
|
||
if (document.head.innerText.includes('window.__PRELOADED_STATE__')) {
|
||
let html = document.head.outerHTML;
|
||
let split1 = html.split('window.__PRELOADED_STATE__ =')[1];
|
||
let state = split1.split('//--><!]]></script>')[0].trim();
|
||
let json = JSON.parse(state);
|
||
if (json) {
|
||
let body = json.body;
|
||
let content = document.querySelector('div.c-article-body__content');
|
||
let par_append_text, par_append, related_text;
|
||
let parser = new DOMParser();
|
||
let related_stories = [];
|
||
for (let elem of body) {
|
||
if (elem.isParagraph) {
|
||
par_append_text = parseHtmlEntities(elem.text);
|
||
} else if (elem.snippet) {
|
||
let article_html = parser.parseFromString('<div>' + elem.snippet + '</div>', 'text/html');
|
||
let article_snippet = article_html.querySelector('div');
|
||
let pars = document.querySelectorAll('div.c-article-body__content > p');
|
||
for (let par of pars) {
|
||
if (par.innerText.includes(par_append_text)) {
|
||
par_append = par;
|
||
continue;
|
||
}
|
||
}
|
||
if (article_snippet && par_append)
|
||
par_append.appendChild(article_snippet);
|
||
} else if (elem.text && elem.type === 'endnote') {
|
||
let endnote_html;
|
||
if (elem.author) {
|
||
endnote_html = parser.parseFromString('<div class="author-endnote-container" data-lpos="article|author|bottom">' +
|
||
'<a class="author-endnote-container__author-img-link" href="' + elem.authorPageUrl + '">' +
|
||
'<div class="c-author-badge author-endnote-container__author-img">' +
|
||
'<img class="c-author-badge__img" src="' + elem.author.photo.sizes['1:1'].small + '" alt="' + elem.author.author + '"/></div></a>' +
|
||
'<div>' + elem.text + '</div></div>', 'text/html');
|
||
} else
|
||
endnote_html = parser.parseFromString('<div><p>' + elem.text + '</p></div>', 'text/html');
|
||
let endnote_par = endnote_html.querySelector('div');
|
||
content.appendChild(endnote_par);
|
||
} else if (elem.type === 'relatedStories') {
|
||
related_text = '<div class="article-related-inline">' +
|
||
'<div class="c-related-articles" data-lpos="article|related-stories"><h2 class="article-list-heading">' +
|
||
'<div class="article-list-heading-text article-list-heading-text--small">RELATED STORIES</div></h2>' +
|
||
'<div class="c-related-articles-inline__content">';
|
||
for (let story of elem.relatedStories) {
|
||
related_text = related_text + '<a href="' + story.url + '" class="c-mediacard c-related-articles__article c-mediacard--row c-mediacard--small-only-row c-mediacard--medium-only-row c-mediacard--large-only-row" data-test-id="mediacard"><div class="c-mediacard__content">' +
|
||
'<h3 class="c-mediacard__heading mediacard-headline__long"><span data-test-id="mediacard-headline">' + story.headline + '</span></h3>' +
|
||
'<div class="c-mediacard-footer"><div class="c-mediacard-footer__items-left">' +
|
||
'<span class="article__published-date">' + story.abstract + '</span></div></div></div></a>';
|
||
}
|
||
related_text = related_text + '</div></div></div>';
|
||
}
|
||
}
|
||
let related_html = parser.parseFromString(related_text, 'text/html');
|
||
let related_par = related_html.querySelector('div');
|
||
content.appendChild(related_par);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
else if (matchDomain("afr.com")) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
let hidden_images = document.querySelectorAll('img');
|
||
for (let hidden_image of hidden_images) {
|
||
var src = hidden_image.src;
|
||
if (src.includes(".gif")) {
|
||
var data_src = hidden_image.getAttribute("data-src");
|
||
if (data_src)
|
||
hidden_image.setAttribute('src', data_src);
|
||
}
|
||
}
|
||
let plista = document.querySelector('div[data-plista-placement="underArticle_Group"]');
|
||
removeDOMElement(plista);
|
||
});
|
||
}
|
||
|
||
else if (matchDomain("theglobeandmail.com")) {
|
||
let article_body_subscribed = document.querySelector('.c-article-body--subscribed');
|
||
if (article_body_subscribed) {
|
||
article_body_subscribed.removeAttribute('class');
|
||
}
|
||
function tgam_main() {
|
||
document.addEventListener('bpc_event', function (e) {
|
||
if (window.tgam)
|
||
window.tgam.keytar.subscriberPaywallEnabled = false;
|
||
})
|
||
}
|
||
insert_script(tgam_main);
|
||
document.dispatchEvent(new CustomEvent('bpc_event', {}));
|
||
}
|
||
|
||
else if (matchDomain("sofrep.com")) {
|
||
const banner = document.getElementById('scrollerCTA');
|
||
removeDOMElement(banner);
|
||
}
|
||
|
||
else if (matchDomain("newstatesman.com")) {
|
||
const tns_modal_wrapper = document.querySelector('.tns-modal-wrapper');
|
||
removeDOMElement(tns_modal_wrapper);
|
||
}
|
||
|
||
else if (matchDomain("liberation.fr")) {
|
||
const close_button = document.querySelector('.pw-action-close');
|
||
if (close_button)
|
||
close_button.click();
|
||
}
|
||
|
||
else if (matchDomain("estadao.com.br")) {
|
||
const paywall = document.getElementById('paywall-wrapper-iframe-estadao');
|
||
removeDOMElement(paywall);
|
||
}
|
||
|
||
else if (matchDomain("folha.uol.com.br")) {
|
||
const signup = document.querySelector('.c-top-signup');
|
||
removeDOMElement(signup);
|
||
}
|
||
|
||
else if (matchDomain("cen.acs.org")) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
const meteredBar = document.querySelector('.meteredBar');
|
||
removeDOMElement(meteredBar);
|
||
});
|
||
}
|
||
|
||
else if (matchDomain("lesechos.fr") && window.location.href.match(/-\d{6,}/)) {
|
||
window.setTimeout(function () {
|
||
let url = window.location.href;
|
||
let html = document.documentElement.outerHTML;
|
||
let split1 = html.split('window.__PRELOADED_STATE__')[1];
|
||
let split2 = split1.split('</script>')[0].trim();
|
||
let state = split2.substr(1, split2.length - 2);
|
||
try {
|
||
let data = JSON.parse(state);
|
||
let article = data.article.data.stripes[0].mainContent[0].data.description;
|
||
let url_loaded = data.article.data.path;
|
||
if (!url.includes(url_loaded))
|
||
document.location.reload(true);
|
||
let paywallNode = document.querySelector('.post-paywall');
|
||
if (paywallNode) {
|
||
let contentNode = document.createElement('div');
|
||
let parser = new DOMParser();
|
||
let article_html = parser.parseFromString('<div>' + article + '</div>', 'text/html');
|
||
let article_par = article_html.querySelector('div');
|
||
if (article_par) {
|
||
contentNode.appendChild(article_par);
|
||
contentNode.className = paywallNode.className;
|
||
paywallNode.parentNode.insertBefore(contentNode, paywallNode);
|
||
removeDOMElement(paywallNode);
|
||
let paywallLastChildNode = document.querySelector('.post-paywall > :last-child');
|
||
if (paywallLastChildNode) {
|
||
paywallLastChildNode.setAttribute('style', 'height: auto !important; overflow: hidden !important; max-height: none !important;');
|
||
}
|
||
}
|
||
}
|
||
} catch (err) {
|
||
console.warn('unable to parse lesechos text');
|
||
console.warn(err);
|
||
}
|
||
let ad_blocks = document.querySelectorAll('.jzxvkd-1');
|
||
for (let ad_block of ad_blocks) {
|
||
ad_block.setAttribute('style', 'display:none');
|
||
}
|
||
let abo_banner = document.querySelector('[class^="pgxf3b"]');
|
||
removeDOMElement(abo_banner);
|
||
}, 1000); // Delay (in milliseconds)
|
||
}
|
||
|
||
else if (matchDomain(["lc.nl", "dvhn.nl"])) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
if (window.location.href.includes('?'))
|
||
window.location.href = window.location.href.split('?')[0];
|
||
});
|
||
let top_ad = document.querySelector('.top__ad');
|
||
let plus = document.querySelector('.plusJustRead');
|
||
removeDOMElement(top_ad, plus);
|
||
}
|
||
|
||
else if (matchDomain("newyorker.com")) {
|
||
const paywall_bar = document.querySelector('.paywall-bar');
|
||
removeDOMElement(paywall_bar);
|
||
}
|
||
|
||
else if (matchDomain("americanaffairsjournal.org")) {
|
||
const paywall_bar = document.querySelector('.paywall-notification-bar-wrapper');
|
||
removeDOMElement(paywall_bar);
|
||
}
|
||
|
||
else if (matchDomain('ladepeche.fr')) {
|
||
window.setTimeout(function () {
|
||
const hidden_section = document.querySelector('.article-full__body-content');
|
||
if (hidden_section) {
|
||
hidden_section.classList.remove('article-full__body-content');
|
||
let pars = hidden_section.querySelectorAll("p, h2, div");
|
||
for (let par of pars) {
|
||
par.removeAttribute('style');
|
||
}
|
||
}
|
||
const abon = document.querySelector('#noscript-paywall-content, #noscript-paywall');
|
||
removeDOMElement(abon);
|
||
}, 500); // Delay (in milliseconds)
|
||
}
|
||
|
||
else if (matchDomain('challenges.fr')) {
|
||
const amorce = document.querySelector('.user-paying-amorce');
|
||
if (amorce)
|
||
amorce.setAttribute('style', 'display:none !important');
|
||
const content = document.querySelector('.user-paying-content');
|
||
if (content)
|
||
content.setAttribute('style', 'display: block !important');
|
||
const paywall = document.querySelector('.temp-paywall');
|
||
removeDOMElement(paywall);
|
||
}
|
||
|
||
else if (matchDomain('barrons.com')) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
let body_continuous = document.querySelector('body.is-continuous');
|
||
let snippet = document.querySelector('meta[content="snippet"]');
|
||
if (body_continuous && snippet) {
|
||
window.location.href = window.location.href.replace('barrons.com', 'barrons.com/amp');
|
||
}
|
||
});
|
||
if (!window.location.href.includes('barrons.com/amp/')) {
|
||
var href = '';
|
||
let signin_links = document.querySelectorAll('a.primary-button--link');
|
||
for (let signin_link of signin_links) {
|
||
href = signin_link.href;
|
||
if (href.includes('target=')) {
|
||
href = href.split('target')[1].split('%3F')[0];
|
||
href = href.replace('=', '').replace('%3A', ':').replace(/%2F/g, '/');
|
||
signin_link.href = href;
|
||
signin_link.text = 'Click';
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
else if (matchDomain('lescienze.it')) {
|
||
const paywall = document.querySelector('.paywall-adagio');
|
||
const body_paywall = document.getElementById('detail-body-paywall');
|
||
const shade = document.querySelector('.shade');
|
||
removeDOMElement(paywall, body_paywall, shade);
|
||
const hidden_bodies = document.querySelectorAll('.detail_body');
|
||
for (let hidden_body of hidden_bodies) {
|
||
hidden_body.removeAttribute('hidden');
|
||
hidden_body.setAttribute('style', 'display:block; max-height:auto; overflow:visible');
|
||
}
|
||
}
|
||
|
||
else if (matchDomain('faz.net')) {
|
||
let paywall = document.querySelector('#paywall-form-container-outer,.atc-ContainerPaywall');
|
||
if (paywall) {
|
||
removeDOMElement(paywall);
|
||
let url = new URL(window.location.href);
|
||
let mUrl = new URL(url.pathname, "https://m.faz.net/");
|
||
fetch(mUrl)
|
||
.then(response => {
|
||
if (response.ok) {
|
||
response.text().then(html => {
|
||
var parser = new DOMParser();
|
||
var doc = parser.parseFromString(html, 'text/html');
|
||
let json = doc.querySelector('script[id="schemaOrgJson"]');
|
||
if (json) {
|
||
var json_text = JSON.parse(json.text).ArticleBody;
|
||
let article_text = document.querySelector('.art_txt.paywall,.atc-Text.js-atc-Text');
|
||
article_text.innerText = '';
|
||
|
||
const breakText = (str) => {
|
||
str = str.replace(/(?:^|[\w\"\“])(\.|\?|!)(?=[A-ZÖÜ\„][A-Za-zÀ-ÿ\„]{1,})/gm, "$&\n\n");
|
||
str = str.replace(/([a-z\"\“])(?=[A-Z](?=[A-Za-zÀ-ÿ]+))/gm, "$&\n\n");
|
||
// exceptions: names with alternating lower/uppercase (no general fix)
|
||
let str_rep_arr = ["BaFin", "BerlHG", "BilMoG", "EuGH", "GlaxoSmithKline", "IfSG", "iMessage", "iOS", "iPad", "iPhone", "medRxiv", "mNRA", "StVO"];
|
||
let str_rep_split, str_rep_src;
|
||
for (let str_rep of str_rep_arr) {
|
||
str_rep_split = str_rep.split(/([a-z]+)(?=[A-Z](?=[A-Za-z]+))/);
|
||
str_rep_src = str_rep_split.reduce(function (accumulator, currentValue) {
|
||
return accumulator + currentValue + ((currentValue !== currentValue.toUpperCase()) ? '\n\n' : '');
|
||
});
|
||
if (str_rep_src.endsWith('\n\n'))
|
||
str_rep_src = str_rep_src.slice(0, -2);
|
||
str = str.replace(new RegExp(str_rep_src, "g"), str_rep);
|
||
}
|
||
str = str.replace(/De\n\n([A-Z])/g, "De$1");
|
||
str = str.replace(/La\n\n([A-Z])/g, "La$1");
|
||
str = str.replace(/Le\n\n([A-Z])/g, "Le$1");
|
||
str = str.replace(/Mc\n\n([A-Z])/g, "Mc$1");
|
||
return str;
|
||
};
|
||
|
||
json_text = breakText(json_text);
|
||
json_text.split("\n\n").forEach(
|
||
(p_text) => {
|
||
let elem;
|
||
if (p_text.length < 80) {
|
||
elem = document.createElement("h2");
|
||
elem.setAttribute('class', 'atc-SubHeadline');
|
||
} else {
|
||
elem = document.createElement("p");
|
||
elem.setAttribute('class', 'atc-TextParagraph');
|
||
};
|
||
elem.innerText = p_text;
|
||
article_text.appendChild(elem);
|
||
});
|
||
}
|
||
})
|
||
}
|
||
});
|
||
}
|
||
}
|
||
|
||
else if (matchDomain(['elcomercio.pe', 'gestion.pe'])) {
|
||
const paywall = document.querySelector('.story-content__nota-premium');
|
||
if (paywall) {
|
||
paywall.classList.remove('story-content__nota-premium');
|
||
paywall.removeAttribute('style');
|
||
}
|
||
}
|
||
|
||
else if (matchDomain('journaldunet.com')) {
|
||
const reg_wall = document.querySelector('.reg_wall');
|
||
removeDOMElement(reg_wall);
|
||
const entry_reg_wall = document.querySelector('.entry_reg_wall');
|
||
if (entry_reg_wall) {
|
||
entry_reg_wall.removeAttribute('style');
|
||
}
|
||
}
|
||
|
||
else if (matchDomain('nzz.ch')) {
|
||
let regwall = document.querySelector('.dynamic-regwall');
|
||
removeDOMElement(regwall);
|
||
}
|
||
|
||
else if (matchDomain('lejdd.fr')) {
|
||
let poool_banner = document.querySelector('#poool-container');
|
||
removeDOMElement(poool_banner);
|
||
let bottom_hide = document.querySelector('.cnt[data-poool-mode="hide"]');
|
||
if (bottom_hide) {
|
||
bottom_hide.removeAttribute('data-poool-mode');
|
||
bottom_hide.removeAttribute('style');
|
||
}
|
||
}
|
||
|
||
else if (matchDomain('elmundo.es')) {
|
||
let premium = document.querySelector('.ue-c-article__premium');
|
||
window.setTimeout(function () {
|
||
if (premium && window.location.href.includes('/www.elmundo.es/')) {
|
||
window.location.href = window.location.href.replace('/www.', '/amp.');
|
||
}
|
||
}, 500); // Delay (in milliseconds)
|
||
if (window.location.href.includes('/amp.elmundo.es/')) {
|
||
let paywall = document.querySelector('div[amp-access="authorized!=true"]');
|
||
if (paywall) {
|
||
removeDOMElement(paywall);
|
||
let div_hidden = document.querySelector('div[amp-access="authorized=true"]');
|
||
if (div_hidden) {
|
||
div_hidden.removeAttribute('amp-access-hide');
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
else if (matchDomain('spectator.co.uk')) {
|
||
let premium = document.querySelector('.HardPayWallContainer-module__overlay');
|
||
window.setTimeout(function () {
|
||
if (premium && window.location.href.includes('/www.spectator.co.uk/')) {
|
||
window.location.href = window.location.href + '/amp';
|
||
}
|
||
}, 500); // Delay (in milliseconds)
|
||
}
|
||
|
||
else if (matchDomain('historyextra.com')) {
|
||
let article_masked = document.querySelector('.template-article__masked');
|
||
if (article_masked) {
|
||
let extra_pars = document.querySelectorAll('div.template-article__masked > p');
|
||
removeDOMElement(...extra_pars);
|
||
article_masked.classList.remove('template-article__masked');
|
||
}
|
||
let ad_banner = document.querySelector('.ad-banner-container');
|
||
removeDOMElement(ad_banner);
|
||
}
|
||
|
||
else if (matchDomain('republic.ru')) {
|
||
let paywall = document.querySelector('.paywall-section');
|
||
removeDOMElement(paywall);
|
||
}
|
||
|
||
else if (matchDomain('ftm.nl')) {
|
||
let banner_pp = document.querySelector('div.banner-pp');
|
||
removeDOMElement(banner_pp);
|
||
}
|
||
|
||
else if (matchDomain('inkl.com')) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
let menu_btn = document.querySelector('div.left-buttons-container button.menu-btn');
|
||
if (!menu_btn) {
|
||
let article_container = document.querySelector('div.article-content-container');
|
||
if (article_container)
|
||
article_container.setAttribute("style", "overflow: visible; max-height: none;");
|
||
let gradient_container = document.querySelector('div.gradient-container');
|
||
if (gradient_container)
|
||
gradient_container.setAttribute("style", "height:auto;");
|
||
}
|
||
let what_is_inkl = document.querySelector('.what-is-inkl-container');
|
||
let signup = document.querySelector('.article-signup-container');
|
||
removeDOMElement(what_is_inkl, signup);
|
||
});
|
||
let dismiss_button = document.querySelector('div.dismiss-button-container button.btn');
|
||
if (dismiss_button)
|
||
dismiss_button.click();
|
||
let shared_banner = document.querySelector('div.shared-article-inline-banner');
|
||
removeDOMElement(shared_banner);
|
||
let dive_deeper_summary_bodies = document.querySelectorAll('div.dive-deeper-container div.summary-body');
|
||
if (dive_deeper_summary_bodies) {
|
||
for (summary_body of dive_deeper_summary_bodies) {
|
||
if (!summary_body.querySelector('a')) {
|
||
var ng_click = summary_body.getAttribute('ng-click').replace("showArticle('", '').replace("')", '');
|
||
var weblink = document.createElement('a');
|
||
weblink.text = 'open';
|
||
weblink.href = 'https://www.inkl.com/news/' + ng_click;
|
||
summary_body.appendChild(weblink);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
else if (matchDomain('slader.com')) {
|
||
window.setTimeout(function () {
|
||
let paywall = document.querySelector('.Paywall');
|
||
let paywall_footer = document.querySelector('.Paywall__footer-counter');
|
||
removeDOMElement(paywall, paywall_footer);
|
||
let blur = document.querySelector('section.Paywall__blur');
|
||
if (blur)
|
||
blur.classList.remove('Paywall__blur');
|
||
}, 500); // Delay (in milliseconds)
|
||
}
|
||
|
||
else if (matchDomain('knack.be')) {
|
||
let paywall = document.querySelector('.rmgPaywall');
|
||
removeDOMElement(paywall);
|
||
let hidden_body = document.querySelector('div.rmgDetail-body div');
|
||
if (hidden_body) {
|
||
hidden_body.removeAttribute('class');
|
||
let body_text = hidden_body.innerText.replace(/(?:^|[\w\"\'])(\.|\?|!)(?=[A-Za-zÀ-ÿ\"\']{2,})/gm, "$&\n\n");
|
||
hidden_body.innerText = body_text;
|
||
let intro_par = document.querySelector('div.rmgDetail-body p');
|
||
if (intro_par && intro_par.innerText.length > 200)
|
||
removeDOMElement(intro_par);
|
||
}
|
||
}
|
||
|
||
else if (matchDomain('ilfattoquotidiano.it')) {
|
||
window.setTimeout(function () {
|
||
let subscribe = document.querySelector('.article-ifq-bottom-pro-sostenitore');
|
||
removeDOMElement(subscribe);
|
||
let paywall = document.querySelector('.read-more');
|
||
if (paywall) {
|
||
if (window.location.href.includes('?'))
|
||
window.location.href = window.location.href.replace('?', 'amp/?');
|
||
else
|
||
window.location.href = window.location.href + 'amp';
|
||
}
|
||
if (window.location.href.includes('/amp/')) {
|
||
let section_not_granted = document.querySelector('section[subscriptions-section="content-not-granted"]');
|
||
let comments = document.querySelector('div.content.comments');
|
||
removeDOMElement(section_not_granted, comments);
|
||
let hidden_content = document.querySelector('section[subscriptions-section="content"]');
|
||
if (hidden_content)
|
||
hidden_content.setAttribute('style', 'display:block !important;');
|
||
}
|
||
}, 500); // Delay (in milliseconds)
|
||
}
|
||
|
||
else if (matchDomain('qz.com')) {
|
||
window.setTimeout(function () {
|
||
if (pageContains('._33dc2 h2', 'Become a member, and we promise').length)
|
||
window.location.reload(true);
|
||
}, 500); // Delay (in milliseconds)
|
||
}
|
||
|
||
else if (matchDomain("magazine.atavist.com")) {
|
||
let bottom_notification = document.querySelector('div.bottom-notification');
|
||
let overlay = document.querySelector('div.notification-overlay');
|
||
removeDOMElement(bottom_notification, overlay);
|
||
let paywall = document.querySelector('body.paywall-notification-visible');
|
||
if (paywall)
|
||
paywall.classList.remove('paywall-notification-visible');
|
||
}
|
||
|
||
else if (matchDomain("business-standard.com")) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
let skip_button = document.querySelector('a.btn_skip');
|
||
if (skip_button)
|
||
skip_button.click();
|
||
let paywall = document.querySelector('div.sbc_panel');
|
||
if (paywall) {
|
||
removeDOMElement(paywall.parentElement);
|
||
let scripts = document.querySelectorAll('script[type="application/ld+json"]');
|
||
let json;
|
||
for (let script of scripts) {
|
||
if (script.innerText.includes('articleBody'))
|
||
json = script;
|
||
}
|
||
if (json) {
|
||
let json_text = JSON.parse(json.text.replace(/(\r\n|\n|\r|\t)/gm, ''))[0].articleBody;
|
||
json_text = parseHtmlEntities(json_text);
|
||
json_text = json_text.replace(/(?:^|[\w\"\'\’])(\.|\?|!)(?=[A-Z\"\”\“\‘\’\'][A-Za-zÀ-ÿ\"\”\“\‘\’\']{1,})/gm, "$&</br></br>") + '</br></br>';
|
||
let parser = new DOMParser();
|
||
let html = parser.parseFromString('<div>' + json_text + '</div>', 'text/html');
|
||
let article = html.querySelector('div');
|
||
if (article) {
|
||
let p_content = document.querySelector('span.p-content.paywall');
|
||
if (p_content) {
|
||
let old_pars = p_content.querySelectorAll('p');
|
||
for (let old_par of old_pars) {
|
||
if (!old_par.querySelector('img'))
|
||
removeDOMElement(old_par);
|
||
}
|
||
p_content.appendChild(article);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
});
|
||
}
|
||
|
||
else if (matchDomain("theatlantic.com")) {
|
||
let banner = document.querySelector('.c-nudge__container,.c-non-metered-nudge');
|
||
removeDOMElement(banner);
|
||
}
|
||
|
||
else if (matchDomain("harpers.org")) {
|
||
let overlay = document.querySelector('div[id^="pum-"]');
|
||
removeDOMElement(overlay);
|
||
}
|
||
|
||
else if (matchDomain("irishtimes.com")) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
let stub_article_msg = document.querySelector('div.stub-article-msg');
|
||
let url = window.location.href;
|
||
if (url.includes('mode=sample') || stub_article_msg)
|
||
window.location.href = new URL(url).pathname + '?mode=amp';
|
||
});
|
||
}
|
||
|
||
else if (matchDomain("sueddeutsche.de")) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
let reduced_par = document.querySelector('div.sz-article-body__paragraph--reduced');
|
||
let url = window.location.href;
|
||
if (url.includes('reduced=true') || reduced_par)
|
||
window.location.href = url.split('?')[0].replace('www.', 'amphtml.');
|
||
});
|
||
}
|
||
|
||
else if (matchDomain("charliehebdo.fr")) {
|
||
window.setTimeout(function () {
|
||
let paywalled_content = document.querySelector('div.ch-paywalled-content');
|
||
if (paywalled_content)
|
||
paywalled_content.removeAttribute('style');
|
||
let poool_widget = document.querySelector('div#poool-widget');
|
||
removeDOMElement(poool_widget);
|
||
}, 500); // Delay (in milliseconds)
|
||
}
|
||
|
||
else if (matchDomain("fd.nl")) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
if (window.location.href.includes('?'))
|
||
window.location.href = window.location.href.split('?')[0];
|
||
let reg_modal = document.querySelector('div.modal.upsell');
|
||
if (reg_modal)
|
||
window.location.reload(true);
|
||
});
|
||
}
|
||
|
||
else if (matchDomain("noordhollandsdagblad.nl")) {
|
||
window.setTimeout(function () {
|
||
let close_button = document.querySelector('button[data-testid="button-close"]');
|
||
if (close_button)
|
||
close_button.click();
|
||
let premium = document.querySelector('div.common-components-plus_pluslabel--container');
|
||
if (premium) {
|
||
let hidden_article = document.querySelector('div[data-auth-body="article"]');
|
||
if (hidden_article)
|
||
hidden_article.removeAttribute('style');
|
||
let paywall = document.querySelector('div[data-auth-root="paywall"]');
|
||
removeDOMElement(paywall);
|
||
let auth_body = document.querySelector('div[data-auth-body="article"]');
|
||
if (auth_body) {
|
||
let auth_body_par_count = auth_body.querySelectorAll('p');
|
||
if (auth_body_par_count.length < 2) {
|
||
let url = window.location.href;
|
||
let html = document.documentElement.outerHTML;
|
||
let split1 = html.split('window["__PRELOADED_STATE_GRAPH__')[1].split(/=(.+)/)[1];
|
||
let split2 = split1.split('</script>')[0].trim();
|
||
let split3 = split2.split('"body":')[1];
|
||
let state = split3.split('},"')[0] + '}';
|
||
try {
|
||
let data = JSON.parse(state);
|
||
let article = data.json;
|
||
auth_body.innerHTML = '';
|
||
let par_html, par_dom, par_elem, par_div, par_key;
|
||
let parser = new DOMParser();
|
||
for (let par of article) {
|
||
for (let key in par) {
|
||
par_dom = document.createElement("p");
|
||
par_elem = '';
|
||
par_key = par[key];
|
||
if (key === 'subhead') {
|
||
par_elem = document.createElement("strong");
|
||
par_elem.innerText = par_key;
|
||
} else if (key === 'twitter' || key === 'instagram') {
|
||
par_elem = document.createElement("a");
|
||
Object.assign(par_elem, {
|
||
href: par_key,
|
||
innerText: par_key,
|
||
target: '_blank'
|
||
});
|
||
} else if (key === 'youtube') {
|
||
par_elem = document.createElement("iframe");
|
||
Object.assign(par_elem, {
|
||
src: 'https://www.youtube.com/embed/' + par_key.id,
|
||
id: 'ytplayer',
|
||
type: 'text/html',
|
||
width: 640,
|
||
height: 360,
|
||
frameborder: 0
|
||
});
|
||
} else if (key === 'streamone') {
|
||
par_elem = document.createElement("iframe");
|
||
Object.assign(par_elem, {
|
||
src: 'https://content.tmgvideo.nl/embed/item=' + par_key.id,
|
||
type: 'text/html',
|
||
width: 640,
|
||
height: 360,
|
||
frameborder: 0
|
||
});
|
||
} else if (key === 'image') {
|
||
par_elem = document.createElement("div");
|
||
let par_img = document.createElement("img");
|
||
par_img.src = par_key.url;
|
||
par_elem.appendChild(par_img)
|
||
par_div = document.createElement("div");
|
||
par_div.innerText = par[key].caption ? par[key].caption : '';
|
||
par_div.innerText += par[key].credit ? '\n' + par[key].credit : '';
|
||
par_elem.appendChild(par_div);
|
||
} else {
|
||
par_html = parser.parseFromString('<div>' + par_key + '</div>', 'text/html');
|
||
par_elem = par_html.querySelector('div');
|
||
}
|
||
if (par_elem)
|
||
par_dom.appendChild(par_elem);
|
||
auth_body.appendChild(par_dom);
|
||
}
|
||
}
|
||
} catch (err) {
|
||
console.warn('unable to parse noordhollands dagblad text');
|
||
console.warn(err);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}, 500); // Delay (in milliseconds)
|
||
}
|
||
|
||
else if (matchDomain("limesonline.com")) {
|
||
window.setTimeout(function () {
|
||
let url = window.location.href;
|
||
if (url.includes('prv=true'))
|
||
window.location.href = new URL(url).pathname;
|
||
}, 500); // Delay (in milliseconds)
|
||
}
|
||
|
||
else if (matchDomain("mercuriovalpo.cl")) {
|
||
let content = document.querySelector('div.content');
|
||
if (content)
|
||
content.setAttribute('id', 'content_new');
|
||
let modal_wrapper = document.querySelector('div.modal-wrapper');
|
||
removeDOMElement(modal_wrapper);
|
||
let body_modal = document.querySelector('body.modal-open');
|
||
if (body_modal)
|
||
body_modal.classList.remove('modal-open');
|
||
}
|
||
|
||
else if (matchDomain("discovermagazine.com")) {
|
||
let banner = document.querySelector('div.hWOjDZ, div.qa7yll-1');
|
||
removeDOMElement(banner);
|
||
}
|
||
|
||
else if (domain = matchDomain(["fresnobee.com", "sacbee.com"])) {
|
||
let url = window.location.href;
|
||
if (url.includes('account.' + domain + '/paywall/')) {
|
||
window.setTimeout(function () {
|
||
window.location.href = 'https://amp.' + domain + '/article' + url.split('resume=')[1].split('#')[0] + '.html';
|
||
}, 500); // Delay (in milliseconds)
|
||
} else if (url.includes('amp.' + domain)) {
|
||
let subscr_sections = document.querySelectorAll('div[subscriptions-section="content"]');
|
||
for (let subscr_section of subscr_sections) {
|
||
subscr_section.removeAttribute('subscriptions-section');
|
||
}
|
||
let subscr_tag = document.querySelector('div#subscriber-exclusive-tag');
|
||
let amp_players = document.querySelectorAll('amp-connatix-player');
|
||
removeDOMElement(subscr_tag, ...amp_players);
|
||
}
|
||
let premium_svgs = document.querySelectorAll('h3 > a > svg');
|
||
let premium_link;
|
||
for (let premium_svg of premium_svgs) {
|
||
premium_link = premium_svg.parentElement;
|
||
if (premium_link.href.includes('www.'))
|
||
premium_link.href = premium_link.href.replace('www.', 'amp.');
|
||
}
|
||
}
|
||
|
||
else if (matchDomain("nknews.org")) {
|
||
let full_content = document.querySelector('div#fullContent');
|
||
if (full_content)
|
||
full_content.removeAttribute('style');
|
||
let excerpt = document.querySelector('div#excerptContent');
|
||
let mobile_widget = document.querySelector('div.mobile-widget');
|
||
removeDOMElement(excerpt, mobile_widget);
|
||
}
|
||
|
||
else if (matchDomain("startribune.com")) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
let react_modal_portal = document.querySelectorAll('div.ReactModalPortal');
|
||
removeDOMElement(...react_modal_portal);
|
||
let body_modal = document.querySelector('body.ReactModal__Body--open');
|
||
if (body_modal)
|
||
body_modal.classList.remove('ReactModal__Body--open');
|
||
});
|
||
}
|
||
|
||
else if (matchDomain("nationalreview.com")) {
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
let url = window.location.href;
|
||
let article_truncated = document.querySelector('div#article-content-truncate-wrap');
|
||
window.setTimeout(function () {
|
||
if (article_truncated && !url.includes('/amp/')) {
|
||
if (url.includes('?'))
|
||
window.location.href = url.replace('?', 'amp/?')
|
||
else
|
||
window.location.href = url + 'amp';
|
||
}
|
||
}, 500); // Delay (in milliseconds)
|
||
});
|
||
}
|
||
|
||
else if (matchDomain("timeshighereducation.com")) {
|
||
let paywall_cta = document.querySelector('div.paywall-cta');
|
||
if (paywall_cta) {
|
||
paywall_cta.removeAttribute('style');
|
||
let hidden_divs = document.querySelectorAll('div[style="display: none;"]');
|
||
for (let hidden_div of hidden_divs)
|
||
hidden_div.removeAttribute('style');
|
||
let paywall_fade = document.querySelector('div.paywall-fade');
|
||
if (paywall_fade)
|
||
paywall_fade.classList.remove('paywall-fade');
|
||
}
|
||
}
|
||
|
||
else if (matchDomain("stocknews.com")) {
|
||
let hideme = document.querySelector('div#hideme');
|
||
removeDOMElement(hideme);
|
||
let blurmes = document.querySelectorAll('div[id^="blurme"]');
|
||
for (let i = 0; i < blurmes.length; i++)
|
||
blurmes[i].setAttribute('id', 'blurmenot' + i);
|
||
}
|
||
|
||
else if (matchDomain(["nrz.de", "waz.de", "wp.de", "wr.de"])) {
|
||
let obfuscated_elems = document.querySelectorAll('.obfuscated');
|
||
let parser = new DOMParser();
|
||
for (let obfuscated_elem of obfuscated_elems) {
|
||
let html = parser.parseFromString('<div>' + deobfuscateFUNKE(obfuscated_elem.innerText) + '</div>', 'text/html');
|
||
let par = html.querySelector('div');
|
||
obfuscated_elem.classList.remove('obfuscated');
|
||
obfuscated_elem.innerHTML = '';
|
||
obfuscated_elem.appendChild(par);
|
||
}
|
||
}
|
||
|
||
else if (matchDomain(["haz.de", "lvz.de"])) {
|
||
let paidcontent_intro = document.querySelector('div.pdb-article-body-paidcontentintro');
|
||
if (paidcontent_intro) {
|
||
paidcontent_intro.classList.remove('pdb-article-body-paidcontentintro');
|
||
let json_script = document.querySelector('div.pdb-article > script[type="application/ld+json"]');
|
||
let json_text = JSON.parse(json_script.text).articleBody;
|
||
if (json_text) {
|
||
let pdb_richtext_field = document.querySelectorAll('div.pdb-richtext-field');
|
||
if (pdb_richtext_field[1])
|
||
pdb_richtext_field[1].innerText = json_text;
|
||
}
|
||
let paidcontent_reg = document.querySelector('div.pdb-article-paidcontent-registration');
|
||
removeDOMElement(paidcontent_reg);
|
||
}
|
||
}
|
||
|
||
else if (matchDomain("elpais.com")) {
|
||
let login_register = document.querySelector('.login_register');
|
||
if (login_register) {
|
||
let scripts = document.querySelectorAll('script');
|
||
let json_script;
|
||
for (let script of scripts) {
|
||
if (script.innerText.includes('Fusion.globalContent'))
|
||
json_script = script;
|
||
continue;
|
||
}
|
||
if (json_script) {
|
||
let json_text = json_script.innerHTML.split('Fusion.globalContent=')[1].split(';Fusion.globalContentConfig')[0];
|
||
let json_article = JSON.parse(json_text).content_elements;
|
||
let article_body_par = document.querySelector('div.article_body > p');
|
||
if (article_body_par) {
|
||
article_body_par.innerText = '';
|
||
let parser = new DOMParser();
|
||
let par_text, par_html;
|
||
for (let par of json_article) {
|
||
par_html = parser.parseFromString('<div><p>' + par.content + '</p></br></div>', 'text/html');
|
||
par_text = par_html.querySelector('div');
|
||
if (par_text)
|
||
article_body_par.appendChild(par_text);
|
||
}
|
||
}
|
||
}
|
||
removeDOMElement(login_register);
|
||
}
|
||
let paywall_offer = document.querySelector('.paywallOffer');
|
||
removeDOMElement(paywall_offer);
|
||
}
|
||
|
||
else if (matchDomain("slate.com")) {
|
||
let slate_roadblock = document.querySelector('.slate-roadblock');
|
||
removeDOMElement(slate_roadblock);
|
||
}
|
||
|
||
else if (matchDomain(["ilrestodelcarlino.it", "quotidiano.net"])) {
|
||
let detail_text_truncated = document.querySelector('div.detail-text--truncated');
|
||
let detail_page_paywall = document.querySelector('body.detail-page--paywall');
|
||
if (detail_page_paywall) {
|
||
removeDOMElement(detail_text_truncated);
|
||
detail_page_paywall.classList.remove('detail-page--paywall');
|
||
}
|
||
}
|
||
|
||
else if (matchDomain("nybooks.com")) {
|
||
let paywall_article = document.querySelector('.paywall-article');
|
||
if (paywall_article)
|
||
paywall_article.classList.remove('paywall-article');
|
||
}
|
||
|
||
// General Functions
|
||
function removeDOMElement(...elements) {
|
||
for (let element of elements) {
|
||
if (element)
|
||
element.remove();
|
||
}
|
||
}
|
||
|
||
function matchDomain(domains, hostname) {
|
||
var matched_domain = false;
|
||
if (!hostname)
|
||
hostname = window.location.hostname;
|
||
if (typeof domains === 'string')
|
||
domains = [domains];
|
||
domains.some(domain => (hostname === domain || hostname.endsWith('.' + domain)) && (matched_domain = domain));
|
||
return matched_domain;
|
||
}
|
||
|
||
function removeClassesByPrefix(el, prefix) {
|
||
let el_classes = el.classList;
|
||
for (let el_class of el_classes) {
|
||
if (el_class.startsWith(prefix)) {
|
||
el_classes.remove(el_class);
|
||
}
|
||
}
|
||
}
|
||
|
||
function cookieExists(name) {
|
||
return document.cookie.split(';').some(function(item) { return item.trim().indexOf(name + '=') === 0 })
|
||
}
|
||
|
||
function setCookie(name, value, domain, path, days) {
|
||
var max_age = days * 24 * 60 * 60;
|
||
document.cookie = name + "=" + (value || "") + "; domain=" + domain + "; path=" + path + "; max-age=" + max_age;
|
||
}
|
||
|
||
function insert_script(func, insertAfterDom) {
|
||
let bpc_script = document.querySelector('script#bpc_script');
|
||
if (!bpc_script) {
|
||
let script = document.createElement('script');
|
||
script.setAttribute('id', 'bpc_script');
|
||
script.appendChild(document.createTextNode('(' + func + ')();'));
|
||
let insertAfter = insertAfterDom ? insertAfterDom : (document.body || document.head || document.documentElement);
|
||
insertAfter.appendChild(script);
|
||
}
|
||
}
|
||
|
||
function genHexString(len) {
|
||
let output = '';
|
||
for (let i = 0; i < len; i++) {
|
||
output += (Math.floor(Math.random() * 16)).toString(16);
|
||
}
|
||
return output;
|
||
}
|
||
|
||
function makeRandomNumber(len) {
|
||
let result = '';
|
||
var characters = '123456789';
|
||
var charactersLength = characters.length;
|
||
for (var i = 0; i < len; i++) {
|
||
result += characters.charAt(Math.floor(Math.random() * charactersLength));
|
||
}
|
||
return result;
|
||
}
|
||
|
||
function pageContains(selector, text) {
|
||
let elements = document.querySelectorAll(selector);
|
||
return Array.prototype.filter.call(elements, function(element){
|
||
return RegExp(text).test(element.textContent);
|
||
});
|
||
}
|
||
|
||
function parseHtmlEntities(encodedString) {
|
||
var translate_re = /&(nbsp|amp|quot|lt|gt|deg|hellip|laquo|raquo|ldquo|rdquo|lsquo|rsquo|mdash);/g;
|
||
var translate = {"nbsp": " ", "amp": "&", "quot": "\"", "lt": "<", "gt": ">", "deg": "°", "hellip": "…",
|
||
"laquo": "«", "raquo": "»", "ldquo": "“", "rdquo": "”", "lsquo": "‘", "rsquo": "’", "mdash": "—"};
|
||
return encodedString.replace(translate_re, function (match, entity) {
|
||
return translate[entity];
|
||
}).replace(/&#(\d+);/gi, function (match, numStr) {
|
||
var num = parseInt(numStr, 10);
|
||
return String.fromCharCode(num);
|
||
});
|
||
}
|
||
|
||
function deobfuscateFUNKE(str) {
|
||
return str.replace(/[0-9A-ZÅÝÀµ×#@$²±:`^'´\\,{[/.÷;=?)*\-]/gi, c =>
|
||
'012345678@ABCDEFGHIJKLMNOPQRSTUVWXYÄöÜẞZzabcdefghijklmnopqrstuvwxyäüößz,+.-:<>/()!"=[;9]&_?%#\''['123456789ABCDEFGHIJKLMNOPQRSTUVWXYZÅ×ÝÀ[abcdefghijklmnopqrstuvwxyzåý÷à{-,/.;=?0)*²#µ\\´:^\'`@±$'.indexOf(c)])
|
||
}
|