Automatically removes adds on page
// ==UserScript==
// @name Compile c# online override
// @version 1.1
// @description Automatically removes adds on page
// @match https://rextester.com
// @license MIT
// @grant GM_addStyle
// @run-at document-start
// @namespace https://gf.qytechs.cn/users/1529244
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('bodys { background-color: #ffffff!important; }');
addGlobalStyle('div[id^="google_ads_iframe_"] { display:none!important; width: 0px!important; padding-top: 0px!important;}');
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址