You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bypass-paywalls-firefox-clean/contentScript_once_var.js

108 lines
3.2 KiB
JavaScript

//'use strict';
var ext_api = (typeof browser === 'object') ? browser : chrome;
var de_madsack_domains = ['haz.de', 'kn-online.de', 'ln-online.de', 'lvz.de', 'maz-online.de', 'neuepresse.de', 'ostsee-zeitung.de', 'rnd.de'];
var de_madsack_custom_domains = ['dnn.de', 'gnz.de', 'goettinger-tageblatt.de', 'op-marburg.de', 'paz-online.de', 'siegener-zeitung.de', 'sn-online.de', 'waz-online.de'];
if (matchDomain('cz.de')) {
function cz_unhide(node) {
removeDOMElement(node);
let article_not_allowed = document.querySelector('article.news-read-not-allowed');
if (article_not_allowed)
article_not_allowed.classList.remove('news-read-not-allowed')
}
waitDOMElement('div#erasmo', 'DIV', cz_unhide);
}
else if (matchDomain(de_madsack_domains) || matchDomain(de_madsack_custom_domains)) {
function madsack_main() {
let done = false;
for (let n = 0; n < 10; n++) {
window.setTimeout(function () {
if (!done && window.Fusion) {
window.Fusion.globalContent.isPaid = false;
done = true;
}
}, n * 50);
}
}
insert_script(madsack_main);
}
else if (matchDomain('nzherald.co.nz')) {
function nzherald_main() {
let done = false;
for (let n = 0; n < 10; n++) {
window.setTimeout(function () {
if (!done && window.Fusion) {
window.Fusion.globalContent.isPremium = false;
done = true;
}
}, n * 50);
}
}
insert_script(nzherald_main);
}
else if (matchDomain('theglobeandmail.com')) {
function tgam_main() {
let done = false;
for (let n = 0; n < 10; n++) {
window.setTimeout(function () {
if (!done && window.Fusion) {
window.Fusion.globalContent._id = '';
done = true;
}
}, n * 50);
}
}
insert_script(tgam_main);
}
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 removeDOMElement(...elements) {
for (let element of elements) {
if (element)
element.remove();
}
}
function waitDOMElement(selector, tagName = '', callback, multiple = false) {
new window.MutationObserver(function (mutations) {
for (let mutation of mutations) {
for (let node of mutation.addedNodes) {
if (!tagName || (node.tagName === tagName)) {
if (node.matches(selector)) {
callback(node);
if (!multiple)
this.disconnect();
}
}
}
}
}).observe(document, {
subtree: true,
childList: true
});
}
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);
}
}