GH Real Names

Replace IDs with real names on Github

什麼是GH Real Names?

GH Real Names是由Perfect Things開發的Chrome擴展程式,該擴展的主要功能是“Replace IDs with real names on Github”。

擴展截圖

screenshot

下載GH Real Names擴展crx文件

下載GH Real Names擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This is a great and fantastic extension. It replaces user IDs, on Github and GH Enterprise, with the actual real names (from user's profiles). So when you're looking at "issues" or "PR"s, you don't have to wonder anymore, who is `u123456`, because you will see his real name is "Angus MacCrockodile"!                    

擴展基本資訊

名稱 GH Real Names GH Real Names
ID gonnpgjkjibbcfejlldggocnkiplacif
官方網址 https://chromewebstore.google.com/detail/gh-real-names/gonnpgjkjibbcfejlldggocnkiplacif
簡介 Replace IDs with real names on Github
檔案大小 23.35 KB
安裝次數 86
目前版本 1.2.0
更新時間 2023-03-14
上架時間 2021-08-19
開發者 Perfect Things
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/tborychowski/gh-real-names
說明頁面URL https://github.com/tborychowski/gh-real-names/issues
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.2.0",
    "name": "GH Real Names",
    "author": "Tom",
    "description": "Replace IDs with real names on Github",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "48": "assets\/icon48.png",
        "96": "assets\/icon96.png"
    }
}