Use shortcut to open your github

Use shortcut open your github

Stan na 20-04-2023. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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