Merge branch 'master' into the-atlantic

master
ghost 2019-09-22 16:27:22 -07:00 committed by GitHub
commit e5ba20eb69
4 changed files with 76 additions and 42 deletions

View File

@ -50,6 +50,7 @@
[MIT Sloan Management Review](https://sloanreview.mit.edu)\
[MIT Technology Review](https://www.technologyreview.com)\
[Medium](https://www.medium.com)\
[Mexicon News Daily](mexiconewsdaily.com)\
[NRC](https://www.nrc.nl)\
[New York Magazine](https://www.nymag.com)\
[Newsrep](https://thenewsrep.com)\
@ -64,6 +65,7 @@
[Telegraaf](https://telegraaf.nl)\
[The Advocate](https://www.theadvocate.com.au)\
[The Age](https://www.theage.com.au)\
[The American Interest](https://www.the-american-interest.com)\
[The Atlantic](https://theatlantic.com)\
[The Australian Financial Review](https://www.afr.com)\
[The Australian](https://www.theaustralian.com.au)\

View File

@ -35,6 +35,7 @@ var defaultSites = {
'Liberation': 'liberation.fr',
'Los Angeles Times': 'latimes.com',
'Medium': 'medium.com',
'Mexico News Daily': 'mexiconewsdaily.com',
'MIT Sloan Management Review': 'sloanreview.mit.edu',
'MIT Technology Review': 'technologyreview.com',
'Newsrep': 'thenewsrep.com',
@ -51,6 +52,7 @@ var defaultSites = {
'Telegraaf': 'telegraaf.nl',
'The Advocate': 'theadvocate.com.au',
'The Age': 'theage.com.au',
'The American Interest': 'the-american-interest.com',
'The Atlantic': 'theatlantic.com',
'The Australian': 'theaustralian.com.au',
'The Australian Financial Review': 'afr.com',
@ -105,6 +107,8 @@ const allow_cookies = [
'theaustralian.com.au',
'telegraaf.nl', // keep accept cookies
'demorgen.be',
'mexiconewsdaily.com',
'the-american-interest.com'
]
// Removes cookies after page load
@ -128,6 +132,7 @@ const remove_cookies = [
'hbr.org',
'theatlantic.com',
'medium.com',
'mexiconewsdaily.com',
'foreignpolicy.com',
'wsj.com',
'seattletimes.com',
@ -149,7 +154,8 @@ const use_google_bot = [
'theaustralian.com.au',
'barrons.com',
'telegraph.co.uk',
'zeit.de'
'zeit.de',
'mexiconewsdaily.com'
]
function setDefaultOptions() {

View File

@ -1,67 +1,91 @@
window.localStorage.clear();
if (location.hostname.endsWith('rep.repubblica.it')) {
if (location.href.includes('/pwa/')) {
location.href = location.href.replace('/pwa/', '/ws/detail/');
}
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();
}
}
}
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();
}
}
}
}
if (window.location.href.indexOf("americanbanker.com") !== -1) {
const paywall = document.getElementsByClassName(
"embargo-content"
);
if (paywall && paywall.length>0 ) {
paywall[0].className = "";
}
const paywall = document.getElementsByClassName(
"embargo-content"
);
if (paywall && paywall.length>0 ) {
paywall[0].className = "";
}
}
if (window.location.href.indexOf('telegraaf.nl') !== -1) {
const paywall = document.getElementById('TEMPRORARY_METERING_ID');
if (paywall) {
window.location.reload(1);
}
const paywall = document.getElementById('TEMPRORARY_METERING_ID');
if (paywall) {
window.location.reload(1);
}
}
if (window.location.href.indexOf('ed.nl') !== -1) {
const paywall = document.querySelector('.article__component.article__component--paywall-module-notification');
if (paywall) {
paywall.remove();
paywall = null;
}
const paywall = document.querySelector('.article__component.article__component--paywall-module-notification');
if (paywall) {
paywall.remove();
paywall = null;
}
}
if (window.location.href.indexOf("washingtonpost.com") !== -1) {
if (location.href.includes('/gdpr-consent/')) {
document.querySelector('.gdpr-consent-container .continue-btn.button.free').click();
if (location.href.includes('/gdpr-consent/')) {
document.querySelector('.gdpr-consent-container .continue-btn.button.free').click();
const gdprcheckbox = document.querySelector('.gdpr-consent-container .consent-page:not(.hide) #agree');
if (gdprcheckbox) {
gdprcheckbox.checked = true;
gdprcheckbox.dispatchEvent(new Event('change'));
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();
}
}
document.querySelector('.gdpr-consent-container .consent-page:not(.hide) .continue-btn.button.accept-consent').click();
}
}
}
if (window.location.href.indexOf("wsj.com") !== -1) {
if (location.href.includes('/articles/')) {
document.querySelector('.close-btn').click();
}
if (location.href.includes('/articles/')) {
document.querySelector('.close-btn').click();
}
}
if (window.location.href.indexOf("sloanreview.mit.edu") !== -1) {
document.querySelector('#cboxClose').click();
document.querySelector('#cboxClose').click();
}
if (window.location.href.indexOf("mexiconewsdaily.com") !== -1) {
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);
});
}
if (window.location.href.indexOf("the-american-interest.com") !== -1) {
const counter = document.getElementById('article-counter') || false;
if (counter) {
counter.remove();
counter = false;
}
}
function removeDOMElement(...elements) {
for (let element of elements) {
if (element) element.remove();
}
}

View File

@ -33,6 +33,7 @@ var defaultSites = {
'Liberation': 'liberation.fr',
'Los Angeles Times': 'latimes.com',
'Medium': 'medium.com',
'Mexico News Daily': 'mexiconewsdaily.com',
'MIT Sloan Management Review': 'sloanreview.mit.edu',
'MIT Technology Review': 'technologyreview.com',
'Newsrep': 'thenewsrep.com',
@ -49,6 +50,7 @@ var defaultSites = {
'Telegraaf': 'telegraaf.nl',
'The Advocate': 'theadvocate.com.au',
'The Age': 'theage.com.au',
'The American Interest': 'the-american-interest.com',
'The Atlantic': 'theatlantic.com',
'The Australian': 'theaustralian.com.au',
'The Australian Financial Review (javascript disabled)': 'afr.com',