Greasy Fork

隐藏colamanhua广告

隐藏colamanhua网站上的广告

目前为 2023-08-20 提交的版本。查看 最新版本

// ==UserScript==
// @name         隐藏colamanhua广告
// @namespace    ChatGPT
// @version      1.2
// @description  隐藏colamanhua网站上的广告
// @match        https://www.colamanhua.com/*
// @grant        none
// ==/UserScript==

let style = document.createElement('style');
    style.innerHTML = `[style='display: block; width: 100%; height: 132px; background: rgb(170, 170, 170);'],[style='bottom: 132px;'],body > DIV[style*='height: 33px'][style*='132px !important;'],body > DIV[class][style^='bottom: '][style$='vw; display: block;'],[style*='z-index: 214748364'],.mlad,[class$='_b'] {display: none !important;visibility: hidden; opacity: 0; z-index: -999; width: 0; height: 0; pointer-events: none; position: absolute; left: -9999px; top: -9999px;}`;
    document.head.appendChild(style);