Execute Quicker Command

Execute Quicker command after page load

Versione datata 23/07/2023. Vedi la nuova versione l'ultima versione.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

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

})();