Greasy Fork is available in English.

Entferne Zeit+ Artikel von zeit.de

Entfernt Zeit+ Artikel auf zeit.de

< Feedback on Entferne Zeit+ Artikel von zeit.de

Review: OK - script works, but has bugs

§
Posted: 2022/02/24

Hello @flomei,

I got annoyed by the overflow of Zeit+ articles, so installed this script. But it didn't remove all links for Zeit+.
So I checked and saw that some are marked as zplus-dynamic which evades the filter. I fixed it by changing
var articles = document.querySelectorAll('[data-zplus="zplus"]');
to
var articles = document.querySelectorAll('[data-zplus^="zplus"]');

The ^ in data-zplus^="zplus" matched all elements starting with "zplus", including "zplus-dynamic".

Thanks for the nice script! I hope my changes help others too!

flomeiAuthor
§
Posted: 2023/04/01

Sorry for the late reply, I just fixed it by adding the "zplus-dynamic"-selector, but your solution would work, too.

Post reply

Sign in to post a reply.