您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hides already nominated Maps of the Week
// ==UserScript== // @name Hide Already-Nominated Maps // @namespace https://greasyfork.org/en/users/689296 // @version 1.0.0 // @description Hides already nominated Maps of the Week // @author [email protected] // @license MIT // @icon https://avatars1.githubusercontent.com/u/55962744 // @match *://*warzone.com/mapoftheweek/Nominate // @grant none // @run-at document-end // ==/UserScript== nomineesTable = document.getElementsByClassName("dataTable")[0]; console.log("Hiding already-nominated maps of the week!"); for (var row_idx = 0, row; row = nomineesTable.rows[row_idx]; row_idx++) { if (row.cells[1].textContent.includes("been voted on before")) { row.style = "display: none"; } }