您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
中国人就用百度百科
当前为
// ==UserScript== // @name Wikipedia 伪装成 百度百科 // @namespace userElaina // @version 2023.03.08.1 // @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, " - 百度百科"); document.querySelector('input.vector-search-box-input').placeholder = '搜索百度百科'; document.getElementById("siteSub").innerText = '百度百科或许会倒闭, 但一定不会变质!'; var bigLogo = document.querySelector('a.mw-wiki-logo'); if (bigLogo != null) { 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 = ''; } bigLogo = document.querySelector('a.mw-logo'); if (bigLogo != null) { bigLogo.innerHTML = '<img src="https://raw.githubusercontent.com/userElaina/this-is-the-China-website/main/wikipedia/baidu_big.png" style="padding:10px;padding-top:20px;width:-webkit-fill-available;">'; bigLogo.className = ''; } })();