NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Appledaily Member Login Bypass
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Appledaily Member Login Bypass
// @author j113203
// @match https://hk.news.appledaily.com/*/article/*
// @match https://hk.entertainment.appledaily.com/*/article/*
// @grant none
// @license MIT
// ==/UserScript==
(function () {
'use strict';
var sheets = window.document.styleSheets;
var sheet = sheets[sheets.length - 1];
sheet.insertRule(".cntb.block .LHSContent:before { display: none; }", sheet.cssRules.length);
sheet.insertRule(".cntb.block #articleContent { height: auto }", sheet.cssRules.length);
sheet.insertRule(".cntb.block .contentblock-block { display : none !important}", sheet.cssRules.length);
})();