您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
show editorial title in document.title
// ==UserScript== // @name AtCoder Editorial Title // @namespace https://fuwa.dev/ // @version 0.1 // @description show editorial title in document.title // @author ibuki2003 // @match https://atcoder.jp/contests/*/editorial // @match https://atcoder.jp/contests/*/editorial/* // @icon https://www.google.com/s2/favicons?domain=atcoder.jp // @grant none // ==/UserScript== (function() { 'use strict'; if (/\/editorial$/.test(location.pathname)) { document.querySelectorAll('#main-container ul li a[target=_blank]').forEach((e) => e.removeAttribute('target')) } else { const contest_name = document.title.substr(5); const editorial_title = document.getElementsByTagName('h2')[0].innerText; document.title = `${editorial_title} - ${contest_name}`; } })();