您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script fixes the title problem in the AoPSWiki, so now you can actually tell the difference between your million different tabs!
// ==UserScript== // @name AoPS Title Fixer // @namespace https://rahulchoubey1.repl.co/scripts#aops-title-fixer // @version 2023.08.19.0 // @description This script fixes the title problem in the AoPSWiki, so now you can actually tell the difference between your million different tabs! // @author da BOXEN // @match https://artofproblemsolving.com/wiki/* // @icon https://www.google.com/s2/favicons?sz=64&domain=artofproblemsolving.com // @grant none // @sandbox DOM // @run-at document-end // @license GNU General Public License // ==/UserScript== (function() { "use strict"; const titles = Array.from(document.getElementsByTagName("title")); const badtitles = titles.filter(t => t.innerText === "Art of Problem Solving"); badtitles.forEach(t => t.remove()); })();