Mercurial > ec-userscripts
view japan-times-account-wall-remover.user.js @ 96:368035f2213b
Use builtin framework for document ready
author | nanaya <me@nanaya.net> |
---|---|
date | Fri, 23 Dec 2022 19:14:04 +0900 |
parents | 47ae8c7673cb |
children | 2c4470b73ad9 |
line wrap: on
line source
// ==UserScript== // @name Japan Times "account wall" remover // @namespace https://myconan.net // @match https://www.japantimes.co.jp/* // @grant GM_addStyle // @version 1.0.1 // @author nanaya // @description Removes account wall // @downloadURL https://hg.myconan.net/ec-userscripts/raw-file/tip/japan-times-account-wall-remover.user.js // ==/UserScript== /* global GM_addStyle */ GM_addStyle(` .tp-modal-open.tp-modal-open { overflow: auto !important; height: auto !important; } .tp-backdrop.tp-backdrop, .tp-modal.tp-modal { display: none !important; } `)