mirror of
https://gitflic.ru/project/magnolia1234/bypass-paywalls-clean-filters.git
synced 2025-04-24 08:25:12 +00:00
623 lines
22 KiB
JavaScript
623 lines
22 KiB
JavaScript
// ==UserScript==
|
|
// @name Bypass Paywalls Clean - it
|
|
// @version 4.0.9.0
|
|
// @description Bypass Paywalls of news sites
|
|
// @author magnolia1234
|
|
// @downloadURL https://gitflic.ru/project/magnolia1234/bypass-paywalls-clean-filters/blob/raw?file=userscript/bpc.it.user.js
|
|
// @updateURL https://gitflic.ru/project/magnolia1234/bypass-paywalls-clean-filters/blob/raw?file=userscript/bpc.it.user.js
|
|
// @homepageURL https://gitflic.ru/project/magnolia1234/bypass-paywalls-clean-filters
|
|
// @supportURL https://gitflic.ru/project/magnolia1234/bypass-paywalls-clean-filters
|
|
// @license MIT; https://gitflic.ru/project/magnolia1234/bypass-paywalls-clean-filters/blob/raw?file=LICENSE
|
|
// @match *://*.it/*
|
|
// @match *://*.eastwest.eu/*
|
|
// @match *://*.ilsole24ore.com/*
|
|
// @match *://*.italian.tech/*
|
|
// @match *://*.quotidiano.net/*
|
|
// @match *://*.tuttosport.com/*
|
|
// ==/UserScript==
|
|
|
|
(function() {
|
|
//'use strict';
|
|
|
|
window.setTimeout(function () {
|
|
|
|
var domain;
|
|
var mobile = window.navigator.userAgent.toLowerCase().includes('mobile');
|
|
var csDoneOnce;
|
|
|
|
var overlay = document.querySelector('body.didomi-popup-open');
|
|
if (overlay)
|
|
overlay.classList.remove('didomi-popup-open');
|
|
var ads = 'div.OUTBRAIN, div[id^="taboola-"], div.ad-container, div[class*="-ad-container"], div[class*="_ad-container"], div.arc_ad, div[id^="poool-"], amp-ad, amp-embed[type="mgid"], amp-embed[type="outbrain"], amp-embed[type="taboola"]';
|
|
hideDOMStyle(ads, 10);
|
|
|
|
var it_gedi_domains = ['huffingtonpost.it', 'italian.tech', 'lastampa.it', 'lescienze.it', 'moda.it', 'repubblica.it'];
|
|
var it_ilmessaggero_domains = ['corriereadriatico.it', 'ilgazzettino.it', 'ilmattino.it', 'ilmessaggero.it', 'quotidianodipuglia.it'];
|
|
var it_quotidiano_domains = ['ilgiorno.it', 'ilrestodelcarlino.it', 'iltelegrafolivorno.it', 'lanazione.it', 'quotidiano.net'];
|
|
|
|
if (matchDomain('corriere.it')) {
|
|
if (window.location.pathname.endsWith('_amp.html')) {
|
|
amp_unhide_subscr_section('');
|
|
} else {
|
|
if (window.location.pathname.includes('_preview.shtml') && !window.location.pathname.startsWith('/podcast/')) {
|
|
window.setTimeout(function () {
|
|
window.location.href = window.location.pathname.replace('_preview.shtml', '.shtml');
|
|
}, 500);
|
|
}
|
|
}
|
|
}
|
|
|
|
else if (matchDomain('corrieredellosport.it')) {
|
|
if (!window.location.pathname.startsWith('/amp/')) {
|
|
amp_redirect('div[class^="MainTextTruncated_paragraph__"]');
|
|
let ads = 'div[class^="AdUnit_placeholder"]';
|
|
hideDOMStyle(ads);
|
|
}
|
|
}
|
|
|
|
else if (matchDomain('eastwest.eu')) {
|
|
let paywall = document.querySelector('.paywall');
|
|
if (paywall) {
|
|
paywall.removeAttribute('style');
|
|
paywall.classList.remove('paywall');
|
|
let intro = document.querySelectorAll('div#testo_articolo > p, div#testo_articolo > h3');
|
|
let offerta = document.querySelectorAll('div.offerta_abbonamenti');
|
|
removeDOMElement(...intro, ...offerta);
|
|
}
|
|
}
|
|
|
|
else if (matchDomain('editorialedomani.it')) {
|
|
if (window.location.search.startsWith('?amp=1'))
|
|
ampToHtml();
|
|
}
|
|
|
|
else if (matchDomain('gazzetta.it')) {
|
|
if (window.location.pathname.endsWith('_preview.shtml')) {
|
|
let paywall = document.querySelector('section.bck-freemium__wall');
|
|
if (paywall) {
|
|
removeDOMElement(paywall);
|
|
if (!window.location.search.startsWith('?reason=unauthenticated')) {
|
|
window.location.href = window.location.pathname.replace('_preview', '') + '?gaa_at=g';
|
|
} else {
|
|
let json_script = getArticleJsonScript();
|
|
let header = 'div.content > h2';
|
|
if (json_script) {
|
|
let json = JSON.parse(json_script.text);
|
|
if (json) {
|
|
let json_text = json.articleBody.replace(/(\s{3}| )/g, '\r\n\r\n');
|
|
let content = document.querySelector('div.content > p.has-first-letter');
|
|
if (json_text && content) {
|
|
let content_new = document.createElement('p');
|
|
content_new.innerText = json_text;
|
|
content.parentNode.replaceChild(content_new, content);
|
|
let article_body = document.querySelector('section.body-article');
|
|
if (article_body)
|
|
article_body.style = 'height: auto;';
|
|
} else
|
|
header_nofix(header);
|
|
}
|
|
} else
|
|
header_nofix(header);
|
|
}
|
|
}
|
|
} else if (window.location.pathname.endsWith('_amp.shtml'))
|
|
ampToHtml();
|
|
}
|
|
|
|
else if (matchDomain('ilfattoquotidiano.it')) {
|
|
if (window.location.pathname.endsWith('/amp/')) {
|
|
amp_unhide_subscr_section('div#_4sVideoContainer, div#post-consent-ui');
|
|
let logo = document.querySelector('a > amp-img[src$="/svg/logo-tablet.svg"]');
|
|
if (logo) {
|
|
let logo_new = document.createElement('img');
|
|
logo_new.src = logo.getAttribute('src').replace('/svg/logo-tablet.svg', '/fq-www/logo-ifq-it.svg');
|
|
logo_new.height = logo.getAttribute('height');
|
|
logo_new.width = logo.getAttribute('width');
|
|
logo.parentNode.replaceChild(logo_new, logo);
|
|
}
|
|
} else {
|
|
let paywall = document.querySelector('div#ifq-paywall-metered');
|
|
if (paywall) {
|
|
removeDOMElement(paywall);
|
|
let art_hidden = document.querySelector('article[id].cropped');
|
|
if (art_hidden)
|
|
art_hidden.classList.remove('cropped');
|
|
} else
|
|
header_nofix('div.ifq-post__content', 'div#ifq-paywall-hard');
|
|
}
|
|
let ads = 'div.adv, div.st-adunit, div[id^="ifq-adv-"], div.mgbox';
|
|
hideDOMStyle(ads);
|
|
let ad_units = document.querySelectorAll('div[id^="div-flx-"] > div[data-adunit]');
|
|
for (let elem of ad_units)
|
|
hideDOMElement(elem.parentNode);
|
|
}
|
|
|
|
else if (matchDomain('ilfoglio.it')) {
|
|
if (window.location.pathname.endsWith('/amp/')) {
|
|
amp_unhide_subscr_section('amp-ad, [class^="adv-"], div#gmpVideoContainer');
|
|
} else {
|
|
amp_redirect('div.paywall');
|
|
let ads = '.advertisement';
|
|
hideDOMStyle(ads);
|
|
}
|
|
}
|
|
|
|
else if (matchDomain('ilmanifesto.it')) {
|
|
let paywall = document.querySelector('div[class*="before:bg-gradient-to-t"]');
|
|
if (paywall) {
|
|
removeDOMElement(paywall);
|
|
let article = document.querySelector('article div.prose');
|
|
if (article) {
|
|
let filter = /^self\.__next_f\.push\(\[1,"/;
|
|
let scripts = document.querySelectorAll('script:not([src], [type])');
|
|
for (let script of scripts) {
|
|
if (script.text.match(filter) && script.text.includes('canonical_url')) {
|
|
if (!script.text.includes(window.location.href))
|
|
refreshCurrentTab();
|
|
break;
|
|
}
|
|
}
|
|
let source_script = getSourceJsonScript(/^self\.__next_f\.push\(\[1,"\\u003c/);
|
|
if (source_script) {
|
|
let source_text = source_script.text.split(filter)[1].split('"])')[0].replace(/\\u003c/g, '<').replace(/\\u003e/g, '>').replace(/\\"/g, '"').replace(/\\n/g, '');
|
|
let parser = new DOMParser();
|
|
let doc = parser.parseFromString('<div>' + source_text + '</div>', 'text/html');
|
|
let article_new = doc.querySelector('div');
|
|
let figures = article_new.querySelectorAll('figure[style]');
|
|
for (let elem of figures)
|
|
elem.removeAttribute('style');
|
|
article.innerHTML = '';
|
|
article.appendChild(article_new);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
else if (matchDomain('ilsole24ore.com')) {
|
|
header_nofix('div.paywalltext', 'div.lock');
|
|
waitDOMAttribute('body', 'BODY', 'style', node => node.removeAttribute('style'), true);
|
|
let ads = 'div.background-adv, div.abox, div.ob-smartfeed-wrapper, div.s24_adb';
|
|
hideDOMStyle(ads);
|
|
}
|
|
|
|
else if (domain = matchDomain(['iltirreno.it', 'lanuovasardegna.it']) || matchDomain(['gazzettadimodena.it', 'gazzettadireggio.it', 'lanuovaferrara.it'])) {
|
|
if (window.location.pathname.includes('/news/')) {
|
|
let paywall = document.querySelector('span > img[alt*="Paywall"]');
|
|
if (paywall) {
|
|
let header = paywall.parentNode.parentNode;
|
|
header_nofix(header);
|
|
removeDOMElement(paywall.parentNode);
|
|
}
|
|
window.setTimeout(function () {
|
|
let banners = document.querySelectorAll('div.MuiSnackbar-root, div.css-16cchgy');
|
|
removeDOMElement(...banners);
|
|
}, 1000);
|
|
}
|
|
setCookie(/__mtr$/, '', domain, '/', 0);
|
|
}
|
|
|
|
else if (matchDomain(it_ilmessaggero_domains)) {
|
|
if (window.location.pathname.toLowerCase().includes('/amp/')) {
|
|
amp_unhide_subscr_section();
|
|
} else {
|
|
let noscroll = document.querySelector('html[style]');
|
|
if (noscroll)
|
|
noscroll.removeAttribute('style');
|
|
let ads = 'div.adv_banner, div.inread_adv, div#outbrain';
|
|
hideDOMStyle(ads);
|
|
}
|
|
}
|
|
|
|
else if (matchDomain(it_quotidiano_domains)) {
|
|
if (window.location.pathname.endsWith('/amp') || window.location.search.startsWith('?amp')) {
|
|
amp_unhide_access_hide('="c.customGranted"', '="NOT c.customGranted"', 'amp-fx-flying-carpet, .watermark-adv, .amp__watermark');
|
|
} else {
|
|
amp_redirect('div[data-testid="paywall-container"], div[class^="Paywall_paywall_"]', '', window.location.pathname + '/amp');
|
|
let ads = 'div[id^="div-gpt-ad"]';
|
|
hideDOMStyle(ads);
|
|
}
|
|
}
|
|
|
|
else if (matchDomain('italiaoggi.it')) {
|
|
let paywall = document.querySelector('div.boxAbb');
|
|
if (paywall) {
|
|
let overlay = document.querySelector('div.article-locked-overlay');
|
|
removeDOMElement(paywall, overlay);
|
|
let article_locked = document.querySelector('div.article-locked');
|
|
if (article_locked) {
|
|
article_locked.classList.remove('article-locked');
|
|
let json_script = getArticleJsonScript();
|
|
if (json_script) {
|
|
let json = JSON.parse(json_script.text);
|
|
if (json) {
|
|
let json_text = json.articleBody;
|
|
let content = article_locked.querySelector('section');
|
|
if (json_text && content) {
|
|
let parser = new DOMParser();
|
|
json_text = json_text.replace(/&apos;/g, "'").replace(/;/g, '');
|
|
let doc = parser.parseFromString('<div><section>' + json_text + '</section></div>', 'text/html');
|
|
let content_new = doc.querySelector('div');
|
|
content.parentNode.replaceChild(content_new, content);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
else if (domain = matchDomain(it_gedi_domains)) {
|
|
let amp = window.location.pathname.match(/\/amp(\/)?$/);
|
|
if (matchDomain(['huffingtonpost.it', 'lastampa.it'])) {
|
|
if (window.location.pathname.includes('/news/')) {
|
|
if (!amp) {
|
|
let paywall = document.querySelector('iframe[id^="__limio_frame"]');
|
|
if (paywall) {
|
|
setCookie(/blaize_session/, '', domain, '/', 0);
|
|
refreshCurrentTab(false);
|
|
}
|
|
let modal = document.querySelector('aside#widgetDP');
|
|
removeDOMElement(modal);
|
|
} else
|
|
ampToHtml();
|
|
}
|
|
} else if (matchDomain('repubblica.it')) {
|
|
if (!amp)
|
|
amp_redirect('iframe[id^="__limio_frame"]', '', window.location.pathname + 'amp/');
|
|
else {
|
|
amp_unhide_subscr_section();
|
|
if (!mobile)
|
|
addStyle('img.i-amphtml-fill-content {min-height: 50% !important; min-width: 50% !important;}');
|
|
let paywall = document.querySelector('div.not_granted__content');
|
|
if (paywall) {
|
|
removeDOMElement(paywall);
|
|
let article = document.querySelector('div.story__wrapper');
|
|
if (article) {
|
|
let url = window.location.href.split(/[#\?]/)[0].replace(/\/amp\/$/, '');
|
|
article.before(googleSearchToolLink(url));
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
if (!amp) {
|
|
let paywall = document.querySelector('div#ph-paywall');
|
|
removeDOMElement(paywall);
|
|
setCookie(/blaize_session/, '', domain, '/', 0);
|
|
} else
|
|
ampToHtml();
|
|
}
|
|
let ads = 'div[id^="adv"]';
|
|
hideDOMStyle(ads);
|
|
}
|
|
|
|
else if (matchDomain('milanofinanza.it')) {
|
|
let paywall = document.querySelector('div.paywall-content, section.payment');
|
|
if (paywall) {
|
|
removeDOMElement(paywall);
|
|
let json_script = getArticleJsonScript();
|
|
if (json_script) {
|
|
try {
|
|
let json = JSON.parse(json_script.text.replace(/!=/g, '').replace(/!function\(\){[^!]+(\(\);|0;[a-z])/g, ''));
|
|
if (json) {
|
|
let json_text = parseHtmlEntities(json.articleBody);
|
|
let article = document.querySelector('div.article-locked');
|
|
if (json_text && article) {
|
|
article.innerHTML = '';
|
|
let article_new = document.createElement('p');
|
|
article_new.innerText = json_text;
|
|
article.appendChild(article_new);
|
|
}
|
|
}
|
|
} catch (err) {
|
|
console.log(err);
|
|
header_nofix('div.article-locked', '', 'BPC > no fix (json-error)');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
else if (matchDomain('sky.it')) {
|
|
let paywall = document.querySelector('div.c-paywall');
|
|
if (paywall && window.location.hostname.match(/^(sport|tg24)\./)) {
|
|
removeDOMElement(paywall);
|
|
let article = document.querySelector('div > div.c-article-abstract');
|
|
let json_script = getArticleJsonScript();
|
|
if (article && json_script) {
|
|
try {
|
|
let json = JSON.parse(json_script.text);
|
|
if (json) {
|
|
let json_text = json[0].articleBody;
|
|
if (json_text) {
|
|
let par_new = document.createElement('p');
|
|
par_new.innerText = json_text;
|
|
article.parentNode.appendChild(par_new);
|
|
}
|
|
}
|
|
} catch (err) {
|
|
console.log(err);
|
|
}
|
|
}
|
|
}
|
|
let ads = 'div.c-adv';
|
|
hideDOMStyle(ads);
|
|
}
|
|
|
|
else if (matchDomain('tuttosport.com')) {
|
|
if (!window.location.pathname.startsWith('/amp/')) {
|
|
let paywall = document.querySelector('div[class^="MainTextTruncated_premium"]');
|
|
if (paywall) {
|
|
removeDOMElement(paywall);
|
|
let article = document.querySelector('div > div[class^="MainTextTruncated_truncatedContent"]');
|
|
if (article) {
|
|
let json_script = document.querySelector('script#__NEXT_DATA__');
|
|
if (json_script) {
|
|
try {
|
|
let json = JSON.parse(json_script.text);
|
|
if (json && json.props.pageProps.news && json.props.pageProps.news.content) {
|
|
let url_next = json.props.pageProps.news.href;
|
|
if (url_next && !window.location.pathname.includes(url_next))
|
|
window.location.href = window.location.pathname;
|
|
let parser = new DOMParser();
|
|
let doc = parser.parseFromString('<div>' + json.props.pageProps.news.content + '</div>', 'text/html');
|
|
let article_new = doc.querySelector('div');
|
|
article.parentNode.replaceChild(article_new, article);
|
|
} else
|
|
refreshCurrentTab();
|
|
} catch (err) {
|
|
console.log(err);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
let ads = 'div[class^="AdUnit_"]';
|
|
hideDOMStyle(ads);
|
|
}
|
|
}
|
|
|
|
}, 1000);
|
|
|
|
// General Functions
|
|
|
|
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 matchCookies(name) {
|
|
return document.cookie.split(';').filter(x => x.trim().match(name)).map(y => y.split('=')[0].trim())
|
|
}
|
|
|
|
function setCookie(names, value, domain = '', path = '/', days = 0) {
|
|
var max_age = days * 24 * 60 * 60;
|
|
let ck_names = Array.isArray(names) ? names : [];
|
|
if (names instanceof RegExp)
|
|
ck_names = matchCookies(names);
|
|
else if (typeof names === 'string')
|
|
ck_names = [names];
|
|
for (let ck_name of ck_names) {
|
|
document.cookie = ck_name + "=" + (value || "") + (domain ? "; domain=" + domain : '') + (path ? "; path=" + path : '') + "; max-age=" + max_age;
|
|
}
|
|
window.localStorage.clear();
|
|
}
|
|
|
|
function removeDOMElement(...elements) {
|
|
for (let element of elements) {
|
|
if (element)
|
|
element.remove();
|
|
}
|
|
}
|
|
|
|
function hideDOMElement(...elements) {
|
|
for (let element of elements) {
|
|
if (element)
|
|
element.style = 'display:none !important;';
|
|
}
|
|
}
|
|
|
|
function hideDOMStyle(selector, id = 1) {
|
|
let style = document.querySelector('head > style#ext'+ id);
|
|
if (!style && document.head) {
|
|
let sheet = document.createElement('style');
|
|
sheet.id = 'ext' + id;
|
|
sheet.innerText = selector + ' {display: none !important;}';
|
|
document.head.appendChild(sheet);
|
|
}
|
|
}
|
|
|
|
function addStyle(css, id = 1) {
|
|
let style = document.querySelector('head > style#add'+ id);
|
|
if (!style && document.head) {
|
|
let sheet = document.createElement('style');
|
|
sheet.id = 'add' + id;
|
|
sheet.innerText = css;
|
|
document.head.appendChild(sheet);
|
|
}
|
|
}
|
|
|
|
function waitDOMAttribute(selector, tagName = '', attributeName = '', callback, multiple = false) {
|
|
let targetNode = document.querySelector(selector);
|
|
if (!targetNode)
|
|
return;
|
|
new window.MutationObserver(function (mutations) {
|
|
for (let mutation of mutations) {
|
|
if (mutation.target.attributes[attributeName]) {
|
|
callback(mutation.target);
|
|
if (!multiple)
|
|
this.disconnect();
|
|
}
|
|
}
|
|
}).observe(targetNode, {
|
|
attributes: true,
|
|
attributeFilter: [attributeName]
|
|
});
|
|
}
|
|
|
|
function clearPaywall(paywall, paywall_action) {
|
|
if (paywall) {
|
|
if (!paywall_action)
|
|
removeDOMElement(...paywall);
|
|
else {
|
|
for (let elem of paywall) {
|
|
if (paywall_action.rm_class)
|
|
elem.classList.remove(paywall_action.rm_class);
|
|
else if (paywall_action.rm_attrib)
|
|
elem.removeAttribute(paywall_action.rm_attrib);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function header_nofix(header, cond_sel = '', msg = 'BPC > no fix') {
|
|
if (header && typeof header === 'string')
|
|
header = document.querySelector(header);
|
|
if (header && !document.querySelector('div#bpc_nofix')) {
|
|
if (cond_sel) {
|
|
let elem = document.querySelectorAll(cond_sel);
|
|
if (elem.length)
|
|
removeDOMElement(...elem);
|
|
else
|
|
return false;
|
|
}
|
|
let nofix_div = document.createElement('div');
|
|
nofix_div.id = 'bpc_nofix';
|
|
nofix_div.style = 'margin: 20px; font-size: 20px; font-weight: bold; color: red;';
|
|
nofix_div.innerText = msg;
|
|
header.before(nofix_div);
|
|
}
|
|
}
|
|
|
|
function amp_iframes_replace(weblink = false, source = '') {
|
|
let amp_iframes = document.querySelectorAll('amp-iframe' + (source ? '[src*="' + source + '"]' : ''));
|
|
let par, elem;
|
|
for (let amp_iframe of amp_iframes) {
|
|
if (!weblink) {
|
|
if (amp_iframe.offsetHeight > 10) {
|
|
elem = document.createElement('iframe');
|
|
elem.src = amp_iframe.getAttribute('src').replace(/^http:/, 'https:');
|
|
elem.style = 'height: ' + amp_iframe.offsetHeight + 'px; width: 100%; border: 0px;';
|
|
if (amp_iframe.getAttribute('sandbox'))
|
|
elem.sandbox = amp_iframe.getAttribute('sandbox');
|
|
amp_iframe.parentNode.replaceChild(elem, amp_iframe);
|
|
}
|
|
} else {
|
|
par = document.createElement('p');
|
|
par.style = 'margin: 20px 0px;';
|
|
elem = document.createElement('a');
|
|
elem.innerText = 'Media-link';
|
|
elem.setAttribute('href', amp_iframe.getAttribute('src'));
|
|
elem.setAttribute('target', '_blank');
|
|
par.appendChild(elem);
|
|
amp_iframe.parentNode.replaceChild(par, amp_iframe);
|
|
}
|
|
}
|
|
}
|
|
|
|
function amp_redirect_not_loop(amphtml) {
|
|
if (!check_loop()) {
|
|
window.location.href = amphtml.href;
|
|
} else {
|
|
let header = (document.body && document.body.firstChild) || document.documentElement;
|
|
header_nofix(header, '', 'BPC > redirect to amp failed (disable amp-to-html extension/add-on or browser setting)');
|
|
}
|
|
}
|
|
|
|
function amp_redirect(paywall_sel, paywall_action = '', amp_url = '') {
|
|
let paywall = document.querySelectorAll(paywall_sel);
|
|
let amphtml = document.querySelector('head > link[rel="amphtml"]');
|
|
if (!amphtml && amp_url)
|
|
amphtml = {href: amp_url};
|
|
if (paywall.length && amphtml) {
|
|
clearPaywall(paywall, paywall_action);
|
|
amp_redirect_not_loop(amphtml);
|
|
}
|
|
}
|
|
|
|
function amp_unhide_subscr_section(amp_ads_sel = '', replace_iframes = true, amp_iframe_link = false, source = '') {
|
|
let preview = document.querySelectorAll('[subscriptions-section="content-not-granted"]');
|
|
removeDOMElement(...preview);
|
|
let subscr_section = document.querySelectorAll('[subscriptions-section="content"]');
|
|
for (let elem of subscr_section)
|
|
elem.removeAttribute('subscriptions-section');
|
|
hideDOMStyle(amp_ads_sel, 5);
|
|
if (replace_iframes)
|
|
amp_iframes_replace(amp_iframe_link, source);
|
|
}
|
|
|
|
function amp_unhide_access_hide(amp_access = '', amp_access_not = '', amp_ads_sel = '', replace_iframes = true, amp_iframe_link = false, source = '') {
|
|
let access_hide = document.querySelectorAll('[amp-access' + amp_access + '][amp-access-hide]:not([amp-access="error"], [amp-access^="message"], .piano)');
|
|
for (let elem of access_hide)
|
|
elem.removeAttribute('amp-access-hide');
|
|
if (amp_access_not) {
|
|
let amp_access_not_dom = document.querySelectorAll('[amp-access' + amp_access_not + ']');
|
|
removeDOMElement(...amp_access_not_dom);
|
|
}
|
|
hideDOMStyle(amp_ads_sel, 6);
|
|
if (replace_iframes)
|
|
amp_iframes_replace(amp_iframe_link, source);
|
|
}
|
|
|
|
function ampToHtml() {
|
|
window.setTimeout(function () {
|
|
let canonical = document.querySelector('head > link[rel="canonical"][href]');
|
|
if (canonical)
|
|
window.location.href = canonical.href;
|
|
}, 1000);
|
|
}
|
|
|
|
function check_loop(interval = 2000) {
|
|
let loop = true;
|
|
let loop_date = Number(sessionStorage.getItem('###_loop'));
|
|
if (!(loop_date && (Date.now() - loop_date < interval))) {
|
|
sessionStorage.setItem('###_loop', Date.now());
|
|
loop = false;
|
|
}
|
|
return loop;
|
|
}
|
|
|
|
function refreshCurrentTab(not_loop = true) {
|
|
if (!not_loop || !check_loop(5000)) {
|
|
window.setTimeout(function () {
|
|
window.location.reload(true);
|
|
}, 500);
|
|
} else {
|
|
let header = (document.body && document.body.firstChild) || document.documentElement;
|
|
header_nofix(header, '', 'BPC > refresh loop stopped');
|
|
}
|
|
}
|
|
|
|
function getSourceJsonScript(filter, attributes = ':not([src], [type])') {
|
|
if (typeof filter === 'string')
|
|
filter = new RegExp(filter);
|
|
let scripts = document.querySelectorAll('script' + attributes);
|
|
for (let script of scripts) {
|
|
if (script.text.match(filter))
|
|
return script;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function getArticleJsonScript() {
|
|
let scripts = document.querySelectorAll('script[type="application/ld+json"]');
|
|
let json_script;
|
|
for (let script of scripts) {
|
|
if (script.innerText.match(/"(articlebody|text)":/i)) {
|
|
json_script = script;
|
|
break;
|
|
}
|
|
}
|
|
return json_script;
|
|
}
|
|
|
|
function parseHtmlEntities(encodedString) {
|
|
let parser = new DOMParser();
|
|
let doc = parser.parseFromString('<textarea>' + encodedString + '</textarea>', 'text/html');
|
|
let dom = doc.querySelector('textarea');
|
|
return dom.value;
|
|
}
|
|
|
|
})();
|