Remove GoComics Paywall

Hide the GoComics paywall without triggering detection.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Remove GoComics Paywall
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Hide the GoComics paywall without triggering detection.
// @author       Yoned Mikay
// @match        https://www.gocomics.com/*
// @grant        GM_addStyle
// @icon         https://www.gocomics.com/favicon.ico
// @license      MIT
// ==/UserScript==

(function () {
    'use strict';

    GM_addStyle(`
        .Paywall_upsell__b1P3R,
        .Paywall_upsell__background__KW_M0,
        .Paywall_upsell__container__LILRF,
        .Paywall_upsell__contents__ml3Ad,
        .Paywall_upsell__imageContainer__LG4nq,
        .Paywall_upsell__image__CJgdo,
        .Paywall_upsell__copy__BwUGS {
            opacity: 0.01 !important;
            pointer-events: none !important;
            width: 1px !important;
            height: 1px !important;
            overflow: hidden !important;
            transform: scale(0.01) !important;
        }

        body,
        html {
            overflow: auto !important;
            position: static !important;
        }

        [class*="__lock-scroll"],
        [style*="overflow: hidden"] {
            overflow: auto !important;
            position: static !important;
        }
    `);
})();