External Wikiplus

在基于Mediawiki的网站中启用Wikiplus。

  1. // ==UserScript==
  2. // @name External Wikiplus
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description 在基于Mediawiki的网站中启用Wikiplus。
  6. // @author Star0
  7. // @match https://wiki.arcaea.cn/*
  8. // @grant none
  9. // @license The Unlicense
  10. // ==/UserScript==
  11.  
  12. window.onload = function() {
  13. var main = document.createElement('script');
  14. main.setAttribute('type','text/javascript');
  15. main.setAttribute('src',"https://wikiplus-app.com/Main.js");
  16. document.getElementsByTagName('head')[0].appendChild(main);
  17.  
  18. var highlight = document.createElement('script');
  19. highlight.setAttribute('type','text/javascript');
  20. highlight.setAttribute('src',"https://cdn.jsdelivr.net/gh/bhsd-harry/Wikiplus-highlight@stable/main.min.js");
  21. document.getElementsByTagName('head')[0].appendChild(highlight);
  22. };

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址