Check QuickerAction is Dwonloaded or can Update

对动作网页进行优化

目前為 2024-07-31 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Check QuickerAction is Dwonloaded or can Update
// @namespace    http://tampermonkey.net/
// @version      2024-07-31
// @description  对动作网页进行优化
// @author       HDG
// @match        https://getquicker.net/Sharedaction?code=*
// @icon         https://files.getquicker.net/_icons/5E5C8C35FDA9E28D6E35D9C7E4EAA498A6069306.png
// @license       MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    const runner = "96b44184-fea7-4bd8-9b5c-08dcb09936a7";
    // 通过按钮的ID获取按钮元素
    var button = document.getElementById('btnCopyToClipboard');
    var id = button.getAttribute('sharedaction');
    const versionNumber = document.querySelector("tr:nth-child(3) td+ td").innerText
    const url = `quicker:runaction:${runner}?id=${id};version=${versionNumber}`;
    window.location.assign(url);
})();

QingJ © 2025

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