Make you own Web
decker

decker @decker67

Joined:
May 27, 2022

Make you own Web

Publish Date: Jul 19 '22
4 0

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)
  }
}
Enter fullscreen mode Exit fullscreen mode

Before

Image description

After

Image description

Comments 0 total

    Add comment