GH Real Names

Replace IDs with real names on Github

GH Real Namesคืออะไร?

GH Real Names เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Perfect Things และคุณลักษณะหลักของมันคือ "Replace IDs with real names on Github"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GH Real Names

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}