// ==UserScript== // @name HLTV 阅读优化 // @namespace https://starudream.cn // @version 1.0.2 // @description HLTV 阅读优化,关闭广告 // @author StarUDream // @license Apache License 2.0 // @match *://*.hltv.org/* // @grant none // @icon https://www.hltv.org/img/static/favicon/favicon-16x16.png // @run-at document-end // @require https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js // @downloadURL none // ==/UserScript== (function() { 'use strict'; var $ = window.jQuery; // hltv $('.middle-container').remove(); $('.yabo-firstcol-box').remove(); $('.kgN8P9bvyb2EqDJR').remove(); $('.csgofastbetting').remove(); $('.ranking-by-img').remove(); $('.dongying').remove(); $('.thunderfire').remove(); $("div[class^='regional-']").remove(); $("div[class^='world-']").remove(); $("div[class^='matchpage-']").remove(); //$("div[class^='player-']").remove(); $("aside[class^='column-']").remove(); $('.bgPadding').css('max-width', '80%'); $('.widthControl').css('max-width', '80%'); $('.matchInfo').css('flex', '0 0 75px'); })();