Greasy Fork is available in English.
try to take over the world!
当前为
// ==UserScript==
// @name 机房防抓摆工具 - Generals.io & B站
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author eqvpkbz
// @match http://generals.io/*
// @match https://www.bilibili.com/*
// @grant none
// ==/UserScript==
(function() {
document.title = '首页 - 洛谷 | 计算机科学教育新生态'; //动态修改网站标题
var link = document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = 'https://www.luogu.com.cn/favicon.ico';
document.getElementsByTagName('head')[0].appendChild(link);
})();