2019-12-29 20:53:40 +01:00
|
|
|
|
var arr_localstorage_hold = ['sfchronicle.com', 'economist.com'];
|
|
|
|
|
var localstorage_hold = arr_localstorage_hold.some(function(url) {
|
2019-11-21 21:17:32 -08:00
|
|
|
|
return window.location.href.indexOf(url) !== -1;
|
2019-11-19 13:45:15 +01:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (!localstorage_hold){
|
2019-11-21 21:17:32 -08:00
|
|
|
|
window.localStorage.clear();
|
2019-11-19 13:45:15 +01:00
|
|
|
|
}
|
2018-12-07 13:43:16 +01:00
|
|
|
|
|
Move local newspapers to custom & add special characters in sites.json
* special characters in sites.json
*Move to sites_custom.js: Orlando Sentinel (151,000 daily prints), Sun-Sentinel (163,000) San Diego Union-Tribune (121,000), The News-Gazette, The Morning Call, mexiconewsdaily, L.A. Business Journal, baltimore sun, Crain's Chicago Business, l'écho, Winston-Salem Journal, Eindhovens Dagblad, The Examiner, etc.
* remove the two screenshots & changelog.txt (obsolete)
* instructions for Opera/Vivaldi/Brave/Chromium browsers & link to Firefox
* Updates README.md
2020-01-01 20:27:05 +01:00
|
|
|
|
// Content workarounds/domain
|
2018-12-07 13:43:16 +01:00
|
|
|
|
if (location.hostname.endsWith('rep.repubblica.it')) {
|
2019-10-19 19:11:44 +02:00
|
|
|
|
if (location.href.includes('/pwa/')) {
|
|
|
|
|
location.href = location.href.replace('/pwa/', '/ws/detail/');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (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"]');
|
|
|
|
|
if (preview) {
|
|
|
|
|
preview.remove();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-07 13:43:16 +01:00
|
|
|
|
}
|
2019-05-12 22:27:15 -07:00
|
|
|
|
|
|
|
|
|
if (window.location.href.indexOf("americanbanker.com") !== -1) {
|
2019-11-21 21:17:32 -08:00
|
|
|
|
const paywall = document.getElementsByClassName('embargo-content')[0];
|
|
|
|
|
if (paywall)
|
|
|
|
|
paywall.classList.remove('embargo-content');
|
2019-06-02 13:33:52 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (window.location.href.indexOf('telegraaf.nl') !== -1) {
|
2019-11-21 21:17:32 -08:00
|
|
|
|
setTimeout(function () {
|
|
|
|
|
const paywall = document.getElementById('TEMPRORARY_METERING_ID');
|
|
|
|
|
if (paywall) {
|
|
|
|
|
window.location.reload(true);
|
|
|
|
|
}
|
|
|
|
|
}, 1000); // Delay (in milliseconds)
|
2019-06-02 13:38:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-16 22:39:25 +01:00
|
|
|
|
if (window.location.href.indexOf('ad.nl') !== -1 || window.location.href.indexOf('ed.nl') !== -1) {
|
2019-11-21 21:17:32 -08:00
|
|
|
|
let paywall = document.querySelector('.article__component.article__component--paywall-module-notification');
|
|
|
|
|
removeDOMElement(paywall);
|
2019-06-16 16:29:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (window.location.href.indexOf("washingtonpost.com") !== -1) {
|
2019-10-19 19:11:44 +02:00
|
|
|
|
if (location.href.includes('/gdpr-consent/')) {
|
|
|
|
|
const free_button = document.querySelector('.gdpr-consent-container .continue-btn.button.free');
|
|
|
|
|
if (free_button)
|
|
|
|
|
free_button.click();
|
|
|
|
|
|
|
|
|
|
setTimeout(function () {
|
|
|
|
|
const 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)
|
|
|
|
|
}
|
2019-06-16 16:29:14 +02:00
|
|
|
|
}
|
2019-06-20 21:54:32 -07:00
|
|
|
|
|
|
|
|
|
if (window.location.href.indexOf("wsj.com") !== -1) {
|
2019-10-19 19:11:44 +02:00
|
|
|
|
if (location.href.includes('/articles/')) {
|
2019-11-21 21:17:32 -08:00
|
|
|
|
const close_button = document.querySelector('.close-btn');
|
|
|
|
|
if (close_button)
|
|
|
|
|
close_button.click();
|
2019-10-19 19:11:44 +02:00
|
|
|
|
}
|
2019-06-20 21:54:32 -07:00
|
|
|
|
}
|
2019-06-20 22:28:29 -07:00
|
|
|
|
|
|
|
|
|
if (window.location.href.indexOf("sloanreview.mit.edu") !== -1) {
|
Move local newspapers to custom & add special characters in sites.json
* special characters in sites.json
*Move to sites_custom.js: Orlando Sentinel (151,000 daily prints), Sun-Sentinel (163,000) San Diego Union-Tribune (121,000), The News-Gazette, The Morning Call, mexiconewsdaily, L.A. Business Journal, baltimore sun, Crain's Chicago Business, l'écho, Winston-Salem Journal, Eindhovens Dagblad, The Examiner, etc.
* remove the two screenshots & changelog.txt (obsolete)
* instructions for Opera/Vivaldi/Brave/Chromium browsers & link to Firefox
* Updates README.md
2020-01-01 20:27:05 +01:00
|
|
|
|
const read_more = document.querySelector('.btn-read-more');
|
|
|
|
|
if(read_more)
|
|
|
|
|
read_more.click();
|
2019-06-20 22:28:29 -07:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-17 18:39:51 +03:00
|
|
|
|
if (window.location.href.indexOf("mexiconewsdaily.com") !== -1) {
|
2019-10-19 19:11:44 +02:00
|
|
|
|
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);
|
|
|
|
|
});
|
2019-09-17 18:39:51 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-16 21:07:16 +03:00
|
|
|
|
if (window.location.href.indexOf("the-american-interest.com") !== -1) {
|
2019-11-16 22:39:25 +01:00
|
|
|
|
const counter = document.getElementById('article-counter');
|
|
|
|
|
removeDOMElement(counter);
|
2019-09-16 21:07:16 +03:00
|
|
|
|
}
|
2019-09-17 18:39:51 +03:00
|
|
|
|
|
2019-09-22 17:10:17 -07:00
|
|
|
|
if (window.location.href.indexOf("nzherald.co.nz") !== -1) {
|
2019-11-21 21:17:32 -08:00
|
|
|
|
const paywall = document.getElementById('article-content');
|
|
|
|
|
if (paywall) {
|
|
|
|
|
const premium = document.getElementsByClassName('premium-sub')[0];
|
|
|
|
|
removeDOMElement(premium);
|
|
|
|
|
paywall.classList.remove('premium-content');
|
|
|
|
|
paywall.classList.add('full-content');
|
|
|
|
|
removeClassesByPrefix(paywall, 'QUnW');
|
2019-12-29 20:26:45 +01:00
|
|
|
|
let paras = paywall.querySelectorAll("p, span, h2, div");
|
|
|
|
|
for (let i = 0; i < paras.length; i++){
|
2019-11-21 21:17:32 -08:00
|
|
|
|
removeClassesByPrefix(paras[i], 'QUnW');
|
|
|
|
|
paras[i].classList.remove("ellipsis");
|
|
|
|
|
paras[i].removeAttribute('style');
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-06 12:09:27 +01:00
|
|
|
|
}
|
2019-09-22 17:10:17 -07:00
|
|
|
|
|
2019-10-19 18:39:16 +02:00
|
|
|
|
if (window.location.href.indexOf("parool.nl") !== -1 || window.location.href.indexOf("trouw.nl") !== -1 || window.location.href.indexOf("volkskrant.nl") !== -1) {
|
2019-11-21 21:17:32 -08:00
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
|
const paywall = document.querySelector('div[data-temptation-position="ARTICLE_BOTTOM"]');
|
|
|
|
|
const hidden_section = document.querySelector('div[data-temptation-position="ARTICLE_INLINE"]');
|
|
|
|
|
removeDOMElement(paywall, hidden_section);
|
|
|
|
|
});
|
2019-10-19 18:39:16 +02:00
|
|
|
|
}
|
2019-09-29 19:02:45 -07:00
|
|
|
|
|
2019-09-23 21:21:21 +03:00
|
|
|
|
if (window.location.href.indexOf("firstthings.com") !== -1) {
|
2019-10-19 19:11:44 +02:00
|
|
|
|
const paywall = document.getElementsByClassName('paywall')[0];
|
2019-11-21 21:17:32 -08:00
|
|
|
|
removeDOMElement(paywall);
|
2019-10-19 18:39:16 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (window.location.href.indexOf("bloomberg.com") !== -1) {
|
2019-10-19 19:11:44 +02:00
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
2019-11-21 21:17:32 -08:00
|
|
|
|
const fence = document.querySelector('.fence-body');
|
|
|
|
|
if (fence){
|
|
|
|
|
fence.classList.remove('fence-body');
|
|
|
|
|
}
|
2019-10-19 19:11:44 +02:00
|
|
|
|
});
|
2019-12-30 18:50:53 +01:00
|
|
|
|
const banner = document.getElementById('paywall-banner');
|
|
|
|
|
removeDOMElement(banner);
|
2019-10-19 18:39:16 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (window.location.href.indexOf("bloombergquint.com") !== -1) {
|
2019-10-19 19:11:44 +02:00
|
|
|
|
const articlesLeftModal = document.getElementsByClassName('paywall-meter-module__story-paywall-container__1UgCE')[0];
|
|
|
|
|
const paywall = document.getElementById('paywallDmp');
|
|
|
|
|
removeDOMElement(articlesLeftModal, paywall);
|
2019-09-26 23:08:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-08 18:40:34 +03:00
|
|
|
|
if (window.location.href.indexOf("medium.com") !== -1) {
|
2019-11-21 21:17:32 -08:00
|
|
|
|
const bottomMessageText = 'Get one more story in your member preview when you sign up. It’s free.';
|
|
|
|
|
const DOMElementsToTextDiv = pageContains('div', bottomMessageText);
|
|
|
|
|
if (DOMElementsToTextDiv[2]) removeDOMElement(DOMElementsToTextDiv[2]);
|
2019-10-31 23:01:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-21 21:32:09 +02:00
|
|
|
|
if (window.location.href.indexOf('lemonde.fr') !== -1) {
|
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
2019-11-21 21:17:32 -08:00
|
|
|
|
const hidden_section = document.getElementsByClassName('article__content--restricted-media')[0];
|
|
|
|
|
if (hidden_section)
|
|
|
|
|
hidden_section.classList.remove('article__content--restricted-media');
|
|
|
|
|
const longform_article_restricted = document.getElementsByClassName('article__content--restricted')[0];
|
|
|
|
|
if (longform_article_restricted)
|
|
|
|
|
longform_article_restricted.classList.remove('article__content--restricted');
|
|
|
|
|
const longform_paywall = document.getElementsByClassName('paywall--longform')[0];
|
|
|
|
|
if (longform_paywall)
|
|
|
|
|
longform_paywall.classList.remove('paywall--longform');
|
2019-10-21 21:32:09 +02:00
|
|
|
|
const paywall = document.getElementById('js-paywall-content');
|
2019-11-21 21:17:32 -08:00
|
|
|
|
const friend_paywall = document.getElementsByClassName('friend--paywall')[0];
|
|
|
|
|
const cookie_banner = document.getElementById('cookie-banner');
|
2019-10-21 21:32:09 +02:00
|
|
|
|
removeDOMElement(paywall, friend_paywall, cookie_banner);
|
|
|
|
|
});
|
|
|
|
|
}
|
2019-11-21 21:17:32 -08:00
|
|
|
|
|
2019-10-28 01:22:19 +01:00
|
|
|
|
if (window.location.href.indexOf("canberratimes.com.au") !== -1) {
|
|
|
|
|
const paywall = document.querySelector('.subscribe-article.news-article-body.article__body');
|
|
|
|
|
paywall.classList.remove('subscribe-article');
|
2019-12-29 20:26:45 +01:00
|
|
|
|
let subscribe = document.getElementsByClassName('subscriber-container')[0];
|
2019-10-28 01:22:19 +01:00
|
|
|
|
removeDOMElement(subscribe);
|
2019-12-29 20:26:45 +01:00
|
|
|
|
let content = document.getElementsByClassName('subscriber-hider');
|
|
|
|
|
for (let i = 0; i < content.length; i++) {
|
2019-10-28 01:22:19 +01:00
|
|
|
|
content[i].classList.remove('subscriber-hider');
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-21 21:32:09 +02:00
|
|
|
|
|
2019-10-29 11:30:06 +01:00
|
|
|
|
if (window.location.href.indexOf("ledevoir.com") !== -1) {
|
Move local newspapers to custom & add special characters in sites.json
* special characters in sites.json
*Move to sites_custom.js: Orlando Sentinel (151,000 daily prints), Sun-Sentinel (163,000) San Diego Union-Tribune (121,000), The News-Gazette, The Morning Call, mexiconewsdaily, L.A. Business Journal, baltimore sun, Crain's Chicago Business, l'écho, Winston-Salem Journal, Eindhovens Dagblad, The Examiner, etc.
* remove the two screenshots & changelog.txt (obsolete)
* instructions for Opera/Vivaldi/Brave/Chromium browsers & link to Firefox
* Updates README.md
2020-01-01 20:27:05 +01:00
|
|
|
|
const counter = document.querySelector('.popup-msg');
|
2019-10-29 11:30:06 +01:00
|
|
|
|
removeDOMElement(counter);
|
|
|
|
|
}
|
2019-10-21 21:32:09 +02:00
|
|
|
|
|
2019-11-01 18:33:26 +01:00
|
|
|
|
if (window.location.href.includes('ft.com')) {
|
|
|
|
|
const cookie_banner = document.querySelector('.n-messaging-banner__outer');
|
|
|
|
|
removeDOMElement(cookie_banner);
|
2019-11-12 11:36:29 +01:00
|
|
|
|
}
|
2019-11-12 11:31:46 +01:00
|
|
|
|
|
2019-10-29 11:30:06 +01:00
|
|
|
|
if (window.location.href.indexOf("thehindu.com") !== -1) {
|
2019-11-16 22:39:25 +01:00
|
|
|
|
const paywall = document.getElementById('test');
|
2019-10-29 15:19:16 +01:00
|
|
|
|
removeDOMElement(paywall);
|
2019-10-29 11:30:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 14:45:13 +01:00
|
|
|
|
if (window.location.href.indexOf("nytimes.com") !== -1) {
|
|
|
|
|
const preview_button = document.querySelector('.css-3s1ce0');
|
|
|
|
|
if (preview_button)
|
|
|
|
|
preview_button.click();
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-19 14:25:29 +01:00
|
|
|
|
if (window.location.href.indexOf("economist.com") !== -1) {
|
2019-12-06 16:13:05 +01:00
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
2020-01-02 18:43:21 +01:00
|
|
|
|
const wrapper = document.getElementById('bottom-page-wrapper');
|
|
|
|
|
removeDOMElement(wrapper);
|
|
|
|
|
setTimeout(function () {
|
|
|
|
|
const paywall = document.querySelector('.layout-article-regwall'); ;
|
|
|
|
|
if (paywall) {
|
|
|
|
|
window.location.reload(true);
|
|
|
|
|
}
|
|
|
|
|
}, 300); // Delay (in milliseconds)
|
|
|
|
|
});
|
2019-11-19 14:25:29 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-21 22:15:35 +01:00
|
|
|
|
if (window.location.href.indexOf("bizjournals.com") !== -1) {
|
2019-11-21 21:17:32 -08:00
|
|
|
|
const sheet_overlay = document.querySelector('.sheet-overlay');
|
|
|
|
|
const chunk_paywall = document.querySelector('.chunk--paywall');
|
|
|
|
|
removeDOMElement(sheet_overlay, chunk_paywall);
|
|
|
|
|
const overlaid = document.querySelectorAll('.is-overlaid');
|
2019-12-29 20:26:45 +01:00
|
|
|
|
for (let i = 0; i < overlaid.length; i++) {
|
2019-11-21 21:17:32 -08:00
|
|
|
|
overlaid[i].classList.remove('is-overlaid');
|
|
|
|
|
}
|
|
|
|
|
const body_hidden = document.querySelector('.js-pre-chunks__story-body');
|
|
|
|
|
body_hidden.removeAttribute('style');
|
2019-11-21 22:15:35 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-05 21:15:21 +01:00
|
|
|
|
if (window.location.href.indexOf("the-tls.co.uk") !== -1) {
|
|
|
|
|
const paywall = document.querySelector('.tls-subscriptions-banner__closed-skin');
|
|
|
|
|
removeDOMElement(paywall);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-20 18:20:09 +01:00
|
|
|
|
if (window.location.href.indexOf("caixinglobal.com") !== -1) {
|
2020-01-02 12:01:30 +01:00
|
|
|
|
const pay_tip = document.querySelectorAll('.cons-pay-tip');
|
2019-12-20 18:20:09 +01:00
|
|
|
|
for (let i = 0; i < pay_tip.length; i++) {
|
|
|
|
|
pay_tip[i].removeAttribute('style');
|
|
|
|
|
}
|
|
|
|
|
const appContent = document.getElementById('appContent');
|
|
|
|
|
if (appContent) {
|
|
|
|
|
const p_hidden = document.querySelectorAll('p:not([style="display:block;"]');
|
|
|
|
|
for (let i = 0; i < p_hidden.length; i++) {
|
|
|
|
|
p_hidden[i].setAttribute('style', 'display:block;');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-24 14:00:01 +01:00
|
|
|
|
if (window.location.href.indexOf("nrc.nl") !== -1) {
|
|
|
|
|
const paywall = document.querySelector('.has-paywall');
|
2020-01-02 12:01:30 +01:00
|
|
|
|
if (paywall)
|
|
|
|
|
paywall.classList.remove("has-paywall");
|
|
|
|
|
const paywall_overlay = document.querySelector('.has-paywall-overlay');
|
|
|
|
|
if (paywall_overlay)
|
|
|
|
|
paywall_overlay.classList.remove("has-paywall-overlay");
|
2019-12-24 14:00:01 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-29 20:26:45 +01:00
|
|
|
|
if (window.location.href.indexOf("scribd.com") !== -1) {
|
|
|
|
|
const blur = document.querySelectorAll('.blurred_page');
|
|
|
|
|
for (let i = 0; i < blur.length; i++) {
|
|
|
|
|
blur[i].classList.remove('blurred_page');
|
|
|
|
|
}
|
|
|
|
|
const portal = document.querySelector('.between_page_portal_root');
|
|
|
|
|
const page_module = document.querySelector('.between_page_module');
|
|
|
|
|
const promo = document.querySelector('.auto__doc_page_webpack_doc_page_body_static_promo_study');
|
|
|
|
|
const ad = document.querySelector('.auto__explain_scribd_v2_advertisement');
|
|
|
|
|
removeDOMElement(portal, page_module, promo, ad);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (window.location.href.indexOf("thetimes.co.uk") !== -1) {
|
2020-01-02 12:01:30 +01:00
|
|
|
|
const block = document.querySelector('.subscription-block');
|
|
|
|
|
removeDOMElement(block);
|
2019-12-29 20:26:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-29 23:04:20 +01:00
|
|
|
|
if (window.location.href.indexOf("technologyreview.com") !== -1) {
|
|
|
|
|
const read_story = document.querySelector('.storyExpanderButton');
|
2020-01-04 13:32:59 +01:00
|
|
|
|
if (read_story)
|
|
|
|
|
read_story.click();
|
2019-12-29 23:04:20 +01:00
|
|
|
|
const meter = document.querySelector('.meter');
|
2019-12-31 16:27:30 +01:00
|
|
|
|
removeDOMElement(meter);
|
2019-12-29 23:04:20 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-30 18:50:53 +01:00
|
|
|
|
if (window.location.href.indexOf("haaretz.com") !== -1) {
|
|
|
|
|
const popup = document.querySelector('.footer-ruler');
|
|
|
|
|
removeDOMElement(popup);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (window.location.href.indexOf("asia.nikkei.com") !== -1) {
|
|
|
|
|
const popup = document.querySelector('.pw-widget--popup');
|
|
|
|
|
removeDOMElement(popup);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-31 16:27:30 +01:00
|
|
|
|
if (window.location.href.indexOf("hbr.org") !== -1) {
|
|
|
|
|
const popup = document.querySelector('.persistent-banner');
|
|
|
|
|
removeDOMElement(popup);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-01 19:24:29 +01:00
|
|
|
|
if (window.location.href.indexOf("techinasia.com") !== -1) {
|
|
|
|
|
const paywall = document.querySelector('.paywall-content');
|
|
|
|
|
if (paywall){
|
|
|
|
|
paywall.classList.remove('paywall-content');
|
|
|
|
|
}
|
Move local newspapers to custom & add special characters in sites.json
* special characters in sites.json
*Move to sites_custom.js: Orlando Sentinel (151,000 daily prints), Sun-Sentinel (163,000) San Diego Union-Tribune (121,000), The News-Gazette, The Morning Call, mexiconewsdaily, L.A. Business Journal, baltimore sun, Crain's Chicago Business, l'écho, Winston-Salem Journal, Eindhovens Dagblad, The Examiner, etc.
* remove the two screenshots & changelog.txt (obsolete)
* instructions for Opera/Vivaldi/Brave/Chromium browsers & link to Firefox
* Updates README.md
2020-01-01 20:27:05 +01:00
|
|
|
|
const splash_subscribe = document.querySelector('.splash-subscribe');
|
2020-01-01 19:24:29 +01:00
|
|
|
|
const paywall_hard = document.querySelector('.paywall-hard');
|
2020-01-01 19:52:08 +01:00
|
|
|
|
removeDOMElement(splash_subscribe, paywall_hard);
|
2020-01-01 19:24:29 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-02 12:01:30 +01:00
|
|
|
|
if (window.location.href.indexOf("thestar.com") !== -1) {
|
|
|
|
|
const paywall = document.querySelector('.basic-paywall-new');
|
|
|
|
|
removeDOMElement(paywall);
|
|
|
|
|
const tbc = document.querySelectorAll('.text-block-container');
|
|
|
|
|
for (let i = 0; i < tbc.length; i++) {
|
|
|
|
|
tbc[i].removeAttribute('style');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-02 18:43:21 +01:00
|
|
|
|
if (window.location.href.indexOf("afr.com") !== -1) {
|
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
|
const hidden_image = document.querySelectorAll('img');
|
|
|
|
|
for (let i = 0; i < hidden_image.length; i++) {
|
|
|
|
|
var src = hidden_image[i].src;
|
|
|
|
|
if ('src: ' + src.indexOf(".gif") !== -1) {
|
|
|
|
|
var data_src = hidden_image[i].getAttribute("data-src");
|
|
|
|
|
if (data_src)
|
|
|
|
|
hidden_image[i].setAttribute('src', data_src);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const plista = document.querySelector('div[data-plista-placement="underArticle_Group"]');
|
|
|
|
|
removeDOMElement(plista);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (window.location.href.indexOf("theglobeandmail.com") !== -1) {
|
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
|
const lazy_image = document.querySelectorAll('.js-lazyimage');
|
|
|
|
|
for (let i = 0; i < lazy_image.length; i++) {
|
|
|
|
|
lazy_image[i].classList.remove('js-lazyimage');
|
|
|
|
|
}
|
|
|
|
|
const hidden_image = document.querySelectorAll('img');
|
|
|
|
|
for (let i = 0; i < hidden_image.length; i++) {
|
|
|
|
|
var src = hidden_image[i].src;
|
|
|
|
|
if ('src: ' + src.indexOf("image/gif") !== -1) {
|
|
|
|
|
var data_src = hidden_image[i].getAttribute("data-src");
|
|
|
|
|
if (data_src)
|
|
|
|
|
hidden_image[i].setAttribute('src', data_src);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-04 13:32:59 +01:00
|
|
|
|
if (window.location.href.indexOf("newcastleherald.com.au") !== -1) {
|
|
|
|
|
const subscribe_truncate = document.querySelector('.subscribe-truncate');
|
|
|
|
|
if (subscribe_truncate)
|
|
|
|
|
subscribe_truncate.classList.remove('subscribe-truncate');
|
|
|
|
|
const subscriber_hider = document.querySelectorAll('.subscriber-hider');
|
|
|
|
|
for (let i = 0; i < subscriber_hider.length; i++) {
|
|
|
|
|
subscriber_hider[i].classList.remove('subscriber-hider');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-05 11:18:33 +01:00
|
|
|
|
if (window.location.href.indexOf("sofrep.com") !== -1) {
|
|
|
|
|
const banner = document.getElementById('scrollerCTA');
|
|
|
|
|
removeDOMElement(banner);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (window.location.href.indexOf("theathletic.com") !== -1) {
|
|
|
|
|
const banner = document.querySelector('.border-bottom-cc');
|
|
|
|
|
const subscribe = document.querySelector('.subscribe-ad-text');
|
|
|
|
|
removeDOMElement(banner, subscribe);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-30 18:50:53 +01:00
|
|
|
|
// General Functions
|
2019-10-19 23:24:33 +02:00
|
|
|
|
function removeDOMElement(...elements) {
|
2019-10-21 21:32:09 +02:00
|
|
|
|
for (let element of elements) {
|
2019-10-19 19:11:44 +02:00
|
|
|
|
if (element)
|
|
|
|
|
element.remove();
|
|
|
|
|
}
|
2019-10-22 13:55:48 +02:00
|
|
|
|
}
|
2019-10-08 18:40:34 +03:00
|
|
|
|
|
2019-11-06 12:09:27 +01:00
|
|
|
|
function removeClassesByPrefix(el, prefix) {
|
2019-12-29 20:26:45 +01:00
|
|
|
|
for (let i = 0; i < el.classList.length; i++){
|
2019-11-16 22:39:25 +01:00
|
|
|
|
if (el.classList[i].startsWith(prefix)) {
|
2019-11-06 12:09:27 +01:00
|
|
|
|
el.classList.remove(el.classList[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-11 20:21:30 -08:00
|
|
|
|
}
|
2019-11-10 20:46:45 +01:00
|
|
|
|
|
2019-10-23 20:08:37 +03:00
|
|
|
|
function pageContains(selector, text) {
|
2019-11-21 21:17:32 -08:00
|
|
|
|
let elements = document.querySelectorAll(selector);
|
|
|
|
|
return Array.prototype.filter.call(elements, function(element){
|
|
|
|
|
return RegExp(text).test(element.textContent);
|
|
|
|
|
});
|
2019-12-29 12:25:09 +01:00
|
|
|
|
}
|