虎牙隐藏评分面板

隐藏烦人的评分面板

// ==UserScript==
// @name         虎牙隐藏评分面板
// @namespace    https://greasyfork.org/zh-CN/scripts/544503
// @version      1.0
// @description  隐藏烦人的评分面板
// @author       monat151
// @match        http*://www.huya.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=huya.com
// @grant        GM_addStyle
// ==/UserScript==

GM_addStyle(`
    .match-score-popup {
        display: none !important;
    }
`)

(function() {
    'use strict';
})();