// ==UserScript== // @name YouTube 伪装成 哔哩哔哩 // @namespace userElaina // @version 2022.10.16.20 // @description 中国人就用哔哩哔哩 // @author userElaina // @license MIT // @match *.youtube.com/* // @grant none // @downloadURL none // ==/UserScript== (function () { document.querySelector('link[rel="icon"]').href = 'https://raw.githubusercontent.com/userElaina/this-is-the-China-website/main/youtube/bilibili.ico'; var spl = window.location.href.split('/'); if (spl.length < 4 || (spl.length == 4 && spl[3].length == 0)) { document.title = "哔哩哔哩 (゜-゜)つロ 干杯~-bilibili"; } else { function sleep(time) { return new Promise((resolve) => setTimeout(resolve, time)); } sleep(500).then(() => { document.title = document.title.replace(/\s-\sYouTube*/g, " - 哔哩哔哩"); }); } document.getElementById("logo-icon").innerHTML = ''; })();