view 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
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;
  }
`)