Execute Quicker Command

Execute Quicker command after page load

La data de 23-07-2023. Vezi ultima versiune.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Execute Quicker Command
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Execute Quicker command after page load
// @match        https://getquicker.net/*
// @run-at       document-idle
// ==/UserScript==

(function() {
    'use strict';
// 在页面加载完成后执行指定的Quicker指令
function runQuickerCommand() {
    var command = 'quicker:runaction:7ad9d9b7-dd7c-4619-b1d7-f0f710c85842'; // 替换为你要执行的Quicker指令
    // 执行Quicker指令
    window.location.href = command; // 在当前标签页中加载指令URL
}

// 监听页面加载完成事件
window.addEventListener('load', runQuickerCommand);

})();