Skip to content

Instantly share code, notes, and snippets.

@erijpkema
Last active September 27, 2015 14:20
Show Gist options
  • Save erijpkema/3898150bc29883ee1eb3 to your computer and use it in GitHub Desktop.
Save erijpkema/3898150bc29883ee1eb3 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name NRCq toch lezen
// @namespace http://nrcq.nl/
// @version 0.1
// @description haalt overlay weg en voegt scrollbalk toe.
// @author You
// @match http://www.nrcq.nl/*
// @grant none
// ==/UserScript==
window.addEventListener('load', function() {
$("body").css("overflow", "auto");
$('.boxy-overlay').hide();
$('.boxy').hide();
}, false);
@DieBauer
Copy link

I've also been working on something like this, using object observers (ES7 experimental feature supported by Chromium), the infinite 'load more content' is also working using this approach.
https://github.com/DieBauer/userscript-nrcq/blob/master/killnrcqpaywall.user.js

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