Use shortcut to open your github

Use shortcut open your github

20.04.2023 itibariyledir. En son verisyonu görün.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey 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 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         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)
    });
})();