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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}