Execute Quicker Command

Execute Quicker command after page load

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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

})();