TheWeek.com Remove Banner

11/28/2023, 9:43:25 AM

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name        TheWeek.com Remove Banner
// @namespace   Violentmonkey Scripts
// @match       https://theweek.com/*
// @grant       GM_addStyle
// @version     1.0.0
// @author      -
// @license     MIT
// @description 11/28/2023, 9:43:25 AM
// ==/UserScript==

GM_addStyle ( `
.paywall-locker {
    height: 100% !important;
}
.kiosq-main-layer {
  display: none;
}
#blueconic-article-theweek {
  display: none;
}
` );