j113203 / Appledaily Member Login Bypass

// ==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);

})();