89
|
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 `)
|