Atalhos

Atalhos para sites

// ==UserScript==
// @name          Atalhos
// @description   Atalhos para sites
// @namespace     CowanLHOS
// @license       CowBas
// @version       1.0
// @author        Cowanbas
// @match         *://*/*
// @run-at        document-start
// ==/UserScript==

(function () {
    'use strict';

    const links = {
        'Digit1': '',
        'Digit2': '',
        'Digit3': '',
    };

    document.addEventListener('keydown', function (event) {
        const link = links[event.code];
        if (event.shiftKey && link && !event.target.matches('input, textarea, [contenteditable="true"]')) {
            window.open(link, '_blank');
        }
    });
})();

QingJ © 2025

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