GH Real Names

Replace IDs with real names on Github

GH Real Names là gì?

GH Real Names là một tiện ích mở rộng Chrome được phát triển bởi Perfect Things, và tính năng chính của nó là "Replace IDs with real names on Github".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng GH Real Names

Tải xuống các tệp mở rộng GH Real Names dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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"!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GH Real Names GH Real Names
ID gonnpgjkjibbcfejlldggocnkiplacif
URL Chính Thức https://chromewebstore.google.com/detail/gh-real-names/gonnpgjkjibbcfejlldggocnkiplacif
Mô tả Replace IDs with real names on Github
Kích Thước Tệp 23.35 KB
Số Lần Cài Đặt 86
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2023-03-14
Ngày Phát Hành 2021-08-19
Nhà Phát Triển Perfect Things
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tborychowski/gh-real-names
URL Trang Trợ Giúp https://github.com/tborychowski/gh-real-names/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}