[Github] User-mention to profile page

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

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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        [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
// @supportURL  https://github.com/Hakorr/Userscripts/issues
// ==/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);
            }
        }
    }
});