您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
The ultimate xingkong Plug-in
// ==UserScript== // @name Saffron by 銀芽 // @version 1.0.0 // @description The ultimate xingkong Plug-in // @author Yinya銀芽 // @match https://agario.xingkong.tw/ // @match https://agario.xingkong.tw/Saffron* // @run-at document-start // @grant GM_xmlhttpRequest // @connect agario.xingkong.tw // @connect rph-xk.web.app // @license MIT // @namespace https://greasyfork.org/users/912109 // ==/UserScript== (function() { 'use strict'; if(window.location.href != "https://agario.xingkong.tw/Saffron"){ window.location.href = "https://agario.xingkong.tw/Saffron"; } document.documentElement.innerHTML = null, GM_xmlhttpRequest({ method : "GET", url : 'https://rph-xk.web.app/saffron-release.html', onload : function(e) { var doc = e.responseText document.open(); document.write(doc); document.close(); } }); })();