Annoyed from the content hidden behind a paywall on https://www.heise.de.
No problem.
Get rid of it by using an extension that executes client scripts on load i.e. scripty with this simple script.
const articles = document.querySelectorAll('[data-component="TeasersModule"')
for (const article of articles) {
const isHeisePlus = article.textContent.includes('heise_plus')
if (isHeisePlus) {
article.parentNode.removeChild(article)
}
}
Top comments (0)