Greasy Fork is available in English.
隐藏colamanhua网站上的广告
当前为
// ==UserScript==
// @name 隐藏colamanhua广告
// @namespace ChatGPT
// @version 1.0
// @description 隐藏colamanhua网站上的广告
// @match https://www.colamanhua.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
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*='display: block; width: 100%; left: 0px; position: fixed; z-index: 214748364'],.mlad {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);
})();