Code: Select all
||images.tvtoday.de/_js/main.js.*.php
www.tvtoday.de##IMG[src*="==.jpg"]
I think … they will not have any costive result put of it because as more people are annoyed by these banners as more will no more visit them … hopefully.
Code: Select all
||images.tvtoday.de/_js/main.js.*.php
www.tvtoday.de##IMG[src*="==.jpg"]
Yeah, great idea.Arno Crypto Nymous wrote:Well i think for now we should block the entire sites in all subscribed Filters.
The only way to show them "YOU CANNOT DO WHAT YOU WANT WITH US" should give them an idea what it means to trick Adblockers.
Code: Select all
// ==UserScript==
// @name focus.de
// @namespace focus.de
// @include http://www.focus.de/*
// @version 1
// @grant none
// @run-at document-end
// ==/UserScript==
function removeAdFromParentElement(parentDivId) {
try {
var divWrapper = document.getElementById(parentDivId);
if (divWrapper != null) {
divWrapper.addEventListener("DOMNodeInserted", function (event) {
if (event.target.nodeName == "DIV") {
if (event.target.id != "") {
var regex = /^[a-zA-Z]+$/;
if (regex.exec(event.target.id)) {
event.target.parentElement.removeChild(event.target);
}
} else if (event.target.className != "") {
var regexClass = /^[a-zA-Z]+ $/;
if (regexClass.exec(event.target.className)) {
event.target.parentElement.removeChild(event.target);
}
}
}
}, false);
}
} catch(err) {
}
}
function removeAdElement(elementId) {
try {
var el = document.getElementById(elementId);
if (el != null) {
el.remove();
}
} catch(err) {
}
}
removeAdFromParentElement("page-container");
removeAdElement("plista_widget_innerArticle");
Code: Select all
// ==UserScript==
// @name www.focus.de
// @namespace www.focus.de
// @include http://www.focus.de/*
// @version 1
// @grant none
// @run-at document-start
// ==/UserScript==
unsafeWindow.amznads = {};