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
官方URL 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"
    }
}