Greasy Fork is available in English.

HLTV 阅读优化

HLTV 阅读优化,关闭广告

// ==UserScript==
// @name         HLTV 阅读优化
// @namespace    https://greasyfork.org/zh-CN/scripts/433258
// @version      1.1.0
// @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.7.1/dist/jquery.min.js
// ==/UserScript==
(function() {
    'use strict';

    var $ = window.jQuery;

    $('.kgN8P9bvyb2EqDJR').remove();
    $('.dongying').remove();
    $('.thunderfire').remove(); // hk
    $('.thunderpick').remove(); // sg
    $('.csgoempire').remove(); // jp
    $('.pinnacle').remove(); // ca
    $('#betting').remove();

    // bg
    $('body').css('background-image', 'none');

    // news
    $('.logoCon .mid-container').remove();
    $('.leftCol .presented-by-row').remove();
    $('.leftCol .yabo-firstcol-box').remove(); // hk
    $('.leftCol .thunderpick-firstcol-box').remove(); // sg
    $('.right2Col .hpoujlijfd').remove(); // sg
    $('.leftCol .ggbe-firstcol-box').remove(); // jp
    $('.leftCol .parimatch-firstcol-box').remove(); // uk

    // matches
    $('.below-vetos-placement').remove();
    $('.matchpage-after-betting-web').remove();

    // sg
    $('.newMatches .gtSmartphone-only').remove();
    $('.newMatches .smartphone-only').remove();

    // google ads
    $('.v-wrapper').remove();
    $('.mpv-container').remove();

    //$('.bgPadding').css('max-width', '60%');
    //$('.widthControl').css('max-width', '60%');
    //$('.matchInfo').css('flex', '0 0 75px');
})();