Execute Quicker Command

Execute Quicker command after page load

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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);

})();