Greasy Fork is available in English.

Wikipedia 伪装成 百度百科

中国人就用百度百科

目前為 2022-10-17 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Wikipedia 伪装成 百度百科
  3. // @namespace userElaina
  4. // @version 2022.10.16.20
  5. // @description 中国人就用百度百科
  6. // @author userElaina
  7. // @license MIT
  8. // @match *.wikipedia.org/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. document.querySelector('link[rel="icon"]').href = 'https://raw.githubusercontent.com/userElaina/this-is-the-China-website/main/wikipedia/baidu.ico';
  14. document.title = document.title.replace(/\s-[\s\S]*/g, " - 百度百科");
  15. var bigLogo = document.querySelector('a[class="mw-wiki-logo"]');
  16. 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;">';
  17. bigLogo.className = '';
  18. document.getElementById("siteSub").innerText = '百度百科或许会倒闭, 但一定不会变质!'
  19. })();