[Github] User-mention to profile page

Changes the user-mention URL to the user's profile page

22.07.2021 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        [Github] User-mention to profile page
// @namespace   HKR
// @match       https://github.com/*
// @grant       none
// @version     1.0
// @author      HKR
// @description Changes the user-mention URL to the user's profile page
// ==/UserScript==

document.addEventListener('readystatechange', event => { 
    if (event.target.readyState === "complete") {
        var mentions = document.getElementsByClassName("commit-author user-mention");

        for (var i = 0; i < mentions.length; i++) {
            var username = mentions[i].getAttribute("href");
            username = username.substring(username.indexOf('='));
            username = username.substring(1);

            if(!username.includes('/') && !username.includes('.'))
                var user_url = "https://github.com/" + username;
            else 
                var user_url = "none";

            if(user_url != "none") {
                 mentions[i].setAttribute("href", user_url);
            }
        }
    }
});