DN.se Paywall

Hides the DN.se paywall and shows the premium content

  1. // ==UserScript==
  2. // @name DN.se Paywall
  3. // @description Hides the DN.se paywall and shows the premium content
  4. // @version 0.1
  5. // @@author Brosk Menmi
  6. // @include https://www.dn.se/*
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
  8. // @grant none
  9. // @namespace https://greasyfork.org/users/173571
  10. // ==/UserScript==
  11.  
  12. $(".paywall-content").hide();
  13. $(".article__premium-content").show();