GitHub Version Tags

Displays the latest version of a project next to the repo name on GitHub.

ما هو GitHub Version Tags؟

GitHub Version Tags هو إضافة Chrome تم تطويرها بواسطة joeyespo، والميزة الرئيسية لها هي "Displays the latest version of a project next to the repo name on GitHub.".

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

screenshot

تحميل ملف CRX للإضافة GitHub Version Tags

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

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

                        Displays the latest version of a project next to the repo name on GitHub.

Source code is on GitHub http://github.com/joeyespo/github-version-tags                    

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

الاسم GitHub Version Tags GitHub Version Tags
ID kflokeeiigcmdejejgiajnefnpoaomjh
عنوان URL الرسمي https://chrome.google.com/webstore/detail/github-version-tags/kflokeeiigcmdejejgiajnefnpoaomjh
الوصف Displays the latest version of a project next to the repo name on GitHub.
حجم الملف 38.62 KB
عدد التثبيتات 126
النسخة الحالية 1.1.0
آخر تحديث 2017-10-01
تاريخ النشر 2017-10-01
تقييم 5.00/5 مجموع تقييمات 1
المطور joeyespo
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://github.com/joeyespo/github-version-tags
عنوان صفحة المساعدة http://github.com/joeyespo/github-version-tags/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Version Tags",
    "version": "1.1.0",
    "description": "Displays the latest version of a project next to the repo name on GitHub.",
    "author": "Joe Esposito ",
    "icons": {
        "19": "media\/icon_19.png",
        "38": "media\/icon_38.png",
        "48": "media\/icon_48.png",
        "128": "media\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "vendor\/compare-versions.js",
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/api.github.com\/*"
    ]
}