Skip to content

Instantly share code, notes, and snippets.

@Arefu
Last active June 11, 2021 08:44
Show Gist options
  • Save Arefu/6909222831da30926448077594f56c0a to your computer and use it in GitHub Desktop.
Save Arefu/6909222831da30926448077594f56c0a to your computer and use it in GitHub Desktop.
Make NZ Herald premium articles free to view
// ==UserScript==
// @name Free NZHerald
// @include *nzherald.co.nz*
// @version 1
// @description Freedom of information is more important than any amount of money
// @author Arefu (Johnathon)
// @grant none
// ==/UserScript==
//I've tested this on FireFox with Tampermonkey. I hate Herald and everything they stand for, they steal articles and don't give credit, they have biased journalism and just generally crappy reporters.
//This is for all the articles they stole from Reddit and Facebook without due credit and copy pasting any clickbait websites like BuzzFeed.
//News has to be free to help democracy be free, step your game up Herald.... Step it up.
var Free = document.getElementsByClassName("premium-content");
Free[0].className = "";
@keithn
Copy link

keithn commented Jun 11, 2021

@brettnz536 and @Arefu you can use https://greasyfork.org/en/scripts/427731-see-it-all. Just install violentmonkey (or tampermonkey, or whatever userscript runner you want)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment