Shaman助手

Hack shaman项目的一些功能,提交便捷操作

// ==UserScript==
// @name         Shaman助手
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Hack shaman项目的一些功能,提交便捷操作
// @author       微笑
// @match        http://shaman.ops.xinhuazhiyun.com/createAppDeploy.html?id=*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=xinhuazhiyun.com
// @grant        none
// @run-at       document-idle
// @license      MIT
// ==/UserScript==

(function () {
  'use strict';
  const branchName = document.querySelector('#branch_name').innerText;
  const input = document.querySelector('#branch');
  if (branchName && input) {
    input.value = branchName;
  }
  // Your code here...
})();

QingJ © 2025

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