您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
云图扩展工具
// ==UserScript== // @name JsonExportExcel // @namespace http://tampermonkey.net/ // @version 2.0.2 // @description 云图扩展工具 // @author siji-Xian // @match *://yuntu.oceanengine.com/* // @icon https://lf3-static.bytednsdoc.com/obj/eden-cn/prhaeh7pxvhn/yuntu/yuntu-logo_default.svg // @require https://greasyfork.org/scripts/404478-jsonexportexcel-min/code/JsonExportExcelmin.js?version=811266 // @require https://greasyfork.org/scripts/455576-qmsg/code/Qmsg.js?version=1122361 // @grant none // @license MIT // ==/UserScript== (function () { "use strict"; var new_element = document.createElement("link"); new_element.setAttribute("rel", "stylesheet"); new_element.setAttribute("href", "https://qmsg.refrain.xyz/message.min.css"); document.body.appendChild(new_element); Qmsg.success("excel导出工具已加载!"); var starBaseUrl = "http://starapi.yinlimedia.com/admin/yuntu_plugins_datas" if (localStorage.getItem("statBaseUrl")) { localStorage.removeItem("statBaseUrl"); } localStorage.setItem("statBaseUrl", starBaseUrl); })();