您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
清除那些🤮背景赌博广告.
// ==UserScript== // @name RIP HLTV BET // @name:zh-CN HLTV 广告去除插件 // @namespace https://github.com/wolfcon/RIP-HLTV-BET // @version 2.4 // @description Remove hltv.org Annoy AD // @description:zh-cn 清除那些🤮背景赌博广告. // @author Frank // @require https://code.jquery.com/jquery-3.6.0.min.js // @match https://*.hltv.org/* // @icon https://www.hltv.org/img/static/favicon/favicon-32x32.png // @license MIT // @run-at document-body // ==/UserScript== const filters = [ '[class*="yabo"]', //'[id*="betting"]', '[href*="bet"]:not([href^="/"])', '[class*="regional"]', '[class*="world"]', '[class*="accumulator"]', '[class*=bg-sidebar]', '[class*=match-fixture]', //'a:not([href^="/"]):not([href^="https://www.hltv.org/"]):not([href^="http://www.hltv.org/"])', '[data-link-tracking-page="Widget"]', '[class*="widget"]', '[rel="nofollow"]:not([data-tooltip-id^="uid"])', '[class^="column-"]:not([class*="col-box"])' ]; function removeBackgroundAds() { document.body.removeAttribute("data-href"); document.body.removeAttribute("style"); // Set background to bar Color $(document.body).css("background-color", $(".navbar").css("background-color")); } function removeTopAds() { var topDiv = document.getElementsByClassName("logoCon")[0]; if (topDiv == null) return; var adCount = topDiv.children.length - 1; while (adCount > 0) { topDiv.removeChild(topDiv.lastElementChild); adCount--; } } removeTopAds(); removeBackgroundAds(); // Set a loop to avoid cleaning failed when loading problem occurs let topAdsInterval = setInterval(removeTopAds, 250); let backgroundAdsInterval = setInterval(removeBackgroundAds, 250); setTimeout(function() { clearInterval(topAdsInterval); clearInterval(backgroundAdsInterval); console.log("Sick Ilya! Let's fucking Go!😂"); }, 5000); // Use ADBlock way to block some annoy element (function removeFilters() { var $hiddenStyle = $('<style type="text/css"></style>'); $($('head')[0]).append($hiddenStyle); $hiddenStyle.append(filters + "{display: none !important; visibility: hidden !important;}"); })(); const hiddenStyle = document.createElement("style") hiddenStyle.innerText = "#betting {display: none}" document.head.appendChild(hiddenStyle)
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址