HS.fi Paywall Bypass

Bypasses HS.fi news site's paywall

目前為 2015-07-23 提交的版本,檢視 最新版本

// ==UserScript==
// @name        HS.fi Paywall Bypass
// @description Bypasses HS.fi news site's paywall 
// @namespace   Lol-z
// @include     http://www.hs.fi/*
// @grant       none
// @version     1.0
// ==/UserScript==
(function () {
  // Prevents script to run more than once 
  if (window.top != window.self) {
    return;
  }
  
  window.addEventListener('load', function () {
   $(document.body).removeClass('paywall paywall-counter paywall-full');
  }, false);  
}) ();