GH Real Names

Replace IDs with real names on Github

GH Real Names क्या है?

GH Real Names Perfect Things द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replace IDs with real names on Github"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GH Real Names एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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