External Wikiplus

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

// ==UserScript==
// @name         External Wikiplus
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  在基于Mediawiki的网站中启用Wikiplus。
// @author       Star0
// @match        https://wiki.arcaea.cn/*
// @grant        none
// @license      The Unlicense
// ==/UserScript==

window.onload = function() {
	var main = document.createElement('script');
	main.setAttribute('type','text/javascript');
	main.setAttribute('src',"https://wikiplus-app.com/Main.js");
	document.getElementsByTagName('head')[0].appendChild(main);

	var highlight = document.createElement('script');
	highlight.setAttribute('type','text/javascript');
	highlight.setAttribute('src',"https://cdn.jsdelivr.net/gh/bhsd-harry/Wikiplus-highlight@stable/main.min.js");
	document.getElementsByTagName('head')[0].appendChild(highlight);
};

QingJ © 2025

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