Wikipedia 伪装成 百度百科

中国人就用百度百科

目前为 2022-10-17 提交的版本。查看 最新版本

// ==UserScript==
// @name Wikipedia 伪装成 百度百科
// @namespace userElaina
// @version 2022.10.16.20
// @description 中国人就用百度百科
// @author userElaina
// @license MIT
// @match *.wikipedia.org/*
// @grant none
// ==/UserScript==

(function () {
    document.querySelector('link[rel="icon"]').href = 'https://raw.githubusercontent.com/userElaina/this-is-the-China-website/main/wikipedia/baidu.ico';
    document.title = document.title.replace(/\s-[\s\S]*/g, " - 百度百科");
    var bigLogo = document.querySelector('a[class="mw-wiki-logo"]');
    bigLogo.innerHTML = '<img src="https://raw.githubusercontent.com/userElaina/this-is-the-China-website/main/wikipedia/baidu_big.png" style="padding:10px;padding-top:40px;width:-webkit-fill-available;">';
    bigLogo.className = '';
    document.getElementById("siteSub").innerText = '百度百科或许会倒闭, 但一定不会变质!'
})();