Mercurial > ec-userscripts
comparison japan-times-account-wall-remover.user.js @ 89:47ae8c7673cb
Add japan times account wall remover
author | nanaya <me@nanaya.pro> |
---|---|
date | Sat, 04 Dec 2021 04:08:25 +0900 |
parents | |
children | 2c4470b73ad9 |
comparison
equal
deleted
inserted
replaced
88:14eafa2920c8 | 89:47ae8c7673cb |
---|---|
1 // ==UserScript== | |
2 // @name Japan Times "account wall" remover | |
3 // @namespace https://myconan.net | |
4 // @match https://www.japantimes.co.jp/* | |
5 // @grant GM_addStyle | |
6 // @version 1.0.1 | |
7 // @author nanaya | |
8 // @description Removes account wall | |
9 // @downloadURL https://hg.myconan.net/ec-userscripts/raw-file/tip/japan-times-account-wall-remover.user.js | |
10 // ==/UserScript== | |
11 | |
12 /* global GM_addStyle */ | |
13 GM_addStyle(` | |
14 .tp-modal-open.tp-modal-open { | |
15 overflow: auto !important; | |
16 height: auto !important; | |
17 } | |
18 .tp-backdrop.tp-backdrop, .tp-modal.tp-modal { | |
19 display: none !important; | |
20 } | |
21 `) |