89
|
1 // ==UserScript==
|
|
2 // @name Japan Times "account wall" remover
|
109
|
3 // @namespace https://nanaya.net
|
89
|
4 // @match https://www.japantimes.co.jp/*
|
|
5 // @grant GM_addStyle
|
|
6 // @version 1.0.1
|
|
7 // @author nanaya
|
|
8 // @description Removes account wall
|
109
|
9 // @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/japan-times-account-wall-remover.user.js
|
89
|
10 // ==/UserScript==
|
|
11
|
109
|
12 'use strict';
|
|
13
|
89
|
14 /* global GM_addStyle */
|
|
15 GM_addStyle(`
|
|
16 .tp-modal-open.tp-modal-open {
|
|
17 overflow: auto !important;
|
|
18 height: auto !important;
|
|
19 }
|
|
20 .tp-backdrop.tp-backdrop, .tp-modal.tp-modal {
|
|
21 display: none !important;
|
|
22 }
|
108
|
23 `);
|