您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
项目管理脚本描述
// ==UserScript== // @name 项目管理脚本 // @namespace http://tampermonkey.net/ // @version 20250903 // @description 项目管理脚本描述 // @author You // @match http://*/zentao/*.html // @match http://*/pages/viewpage.action?* // @icon https://www.google.com/s2/favicons?sz=64&domain=akuvox.local // @grant none // @license none // ==/UserScript== (function() { 'use strict'; if(window.location.href.includes('story-view-')){ // bug分析 loadScript('http://192.168.10.51:51084/demand-creation.js'); } })(); function loadScript(url) { const script = document.createElement('script'); script.src = url; script.type = 'text/javascript'; script.async = true; document.head.appendChild(script); }