Greasy Fork is available in English.

机房防抓摆工具 - Generals.io & B站

教练我在认真写代码!

// ==UserScript==
// @name         机房防抓摆工具 - Generals.io & B站
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  教练我在认真写代码!
// @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);
})();