Use shortcut to open your github

Use shortcut open your github

Version vom 20.04.2023. Aktuellste Version

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey 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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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         Use shortcut to open your github
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Use shortcut open your github
// @author       You
// @include     https://github.com/
// @match       https://github.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=github.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    let commaCount = 0; // We can move the counter outside of the event listener
    let timer = null
    document.addEventListener('keydown', function(event) {
        const href = `https://github1s.com${location.pathname}`;
        if (timer) clearTimeout(timer)
        // We can check if the key pressed is the comma key (key code 188)
        if (event.code === 'Comma') {
            // We can increment the counter each time the comma key is pressed
            commaCount++;
            // If the comma key has been pressed twice, we can open a link
            if (commaCount === 2) {
                window.open(href);
                // We can reset the counter after the link is opened
                commaCount = 0;
            }
        } else {
            // We can reset the counter if any other key is pressed
            commaCount = 0;
        }

        timer = setTimeout(() => { commaCount = 0 }, 1e3)
    });
})();