Skip to content

Instantly share code, notes, and snippets.

@cheerly
Forked from OlleMattsson/dn-reader.js.user.js
Created October 16, 2018 20:46
Show Gist options
  • Save cheerly/22d42873c94a90333982e9899ed22afc to your computer and use it in GitHub Desktop.
Save cheerly/22d42873c94a90333982e9899ed22afc to your computer and use it in GitHub Desktop.
user.js
// ==UserScript==
// @name DN Reader
// @namespace http://dn.se/
// @version 0.1
// @description Tear down this wall.
// @author olmen
// @match https://www.dn.se/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$(window).load(function () {
$('.article__premium-content').show();
$('.js-paywall').hide();
$('.article__lead').css({
'overflow': 'auto',
'position': 'inherit',
'max-height': 'none'
});
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment