Spiegel Online: Adblock Wall entfernen

Entfernt die nervige Anti-Adblock-Meldung von SPON.

< Feedback on Spiegel Online: Adblock Wall entfernen

Review: Good - script works

§
Posted: 2017-11-14

Funktioniert nicht mehr nach Update auf Firefox 57.0

Das Skript hat bisher einwandfrei funktioniert. Nach Update auf Firefox 57.0 mit Greasemonkey 4.0 poppt aber der Adblock-Blocker auf spiegel.de wieder auf.

§
Posted: 2017-11-14

Kann ich so bestätigen.

§
Posted: 2017-11-15

GM_addstyle geht nicht mehr, muss man wie hier
https://stackoverflow.com/questions/23683439/gm-addstyle-equivalent-in-tampermonkey
beschrieben ändern.

§
Posted: 2017-11-15

Sorry, kannst Du ein bisschen spezifischer sagen, wie man es ändern muss? Oder gleich den neuen Code hier posten? Danke!

§
Posted: 2017-11-15

Alles ab $(function()... ersetzen durch:

function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}

addGlobalStyle('.ua-detected { display: none !important; }' +
'#wrapper-content { opacity: 1.0 !important; filter: none !important; pointer-events: auto !important; }');

§
Posted: 2017-11-15

Perfekt, vielen Dank! :smile:

§
Posted: 2017-11-15

hallo
ich bekomme greasmonkey nicht editiert?? wie gehe ich genau vor ??
Über Greasmonkey edit funkt. es nicht?? oder wie speichert man eine änderung??

§
Posted: 2017-11-15

STRG+S speichert die Änderungen.

§
Posted: 2017-11-15

danke

§
Posted: 2017-11-15

Danke auch von mir an grishnak. :smile:

§
Posted: 2017-11-20

Funktioniert bei mir auch mit dem update von grishnak nicht

buzzAuthor
§
Posted: 2017-11-22

Habe das Script angepasst für Firefox.

Es läuft nun bei mir mit einem frischen Firefox in Kombination mit uBlock Origin wunderbar.

Post reply

Sign in to post a reply.