GitHub Real Names

Use real names on GitHub

ما هو GitHub Real Names؟

GitHub Real Names هو إضافة Chrome تم تطويرها بواسطة ForbesLindesay، والميزة الرئيسية لها هي "Use real names on GitHub".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة GitHub Real Names

قم بتنزيل ملفات الامتداد GitHub Real Names بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Adds a button to let you toggle real names vs. usernames in GitHub.                    

معلومات أساسية عن التمديد

الاسم GitHub Real Names GitHub Real Names
ID edfnfekndkopmlejjmlplpceflfldoae
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-real-names/edfnfekndkopmlejjmlplpceflfldoae
الوصف Use real names on GitHub
حجم الملف 38.66 KB
عدد التثبيتات 633
النسخة الحالية 1.3.1
آخر تحديث 2020-08-19
تاريخ النشر 2018-03-26
تقييم 3.60/5 مجموع تقييمات 10
المطور ForbesLindesay
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Real Names",
    "description": "Use real names on GitHub",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "version": "1.3.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Toggle using real GitHub real names"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "manifest_version": 2
}