Released under WTFPL.

HK

// ==UserScript==
// @name        HK Apple Daily login bypass
// @namespace   0x97ED093989537541
// @description HK Apple Daily login bypass
// @include     https://nextplus.nextmedia.com/article/*
// @include     https://hk.video.appledaily.com/actionnews/*
// @include     https://hk.*.appledaily.com/*/realtime/article/*
// @version     1.0.1
// @run-at      document-end
// @grant       none
// ==/UserScript==

var node = document.createElement('script');
node.innerHTML = 'function uReadDisplayMsgBox() {}';
document.head.appendChild(node);

TW

// ==UserScript==
// @name        TW Apple Daily login bypass
// @namespace   0x97ED093989537541
// @description TW Apple Daily login bypass
// @include     https://tw.appledaily.com/*
// @version     1.0.1
// @run-at      document-start
// @grant       none
// ==/UserScript==

var node = document.createElement('script');
node.innerHTML = 'const paywall = function(){};';
document.head.appendChild(node);