LGTM for Github

This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.

ما هو LGTM for Github؟

LGTM for Github هو إضافة Chrome تم تطويرها بواسطة https://thetechtime.com، والميزة الرئيسية لها هي "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.".

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

screenshot

تحميل ملف CRX للإضافة LGTM for Github

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

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

                        Source code: https://github.com/geekrax/lgtm-chrome-extension                    

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

الاسم LGTM for Github LGTM for Github
ID ckjpjogecpcibagiggbejclbihmochpn
عنوان URL الرسمي https://chromewebstore.google.com/detail/lgtm-for-github/ckjpjogecpcibagiggbejclbihmochpn
الوصف This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.
حجم الملف 32.36 KB
عدد التثبيتات 19
النسخة الحالية 1.1
آخر تحديث 2017-03-18
تاريخ النشر 2017-03-17
تقييم 5.00/5 مجموع تقييمات 1
المطور https://thetechtime.com
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LGTM for Github",
    "description": "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.",
    "version": "1.1",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "options_page": "options\/options.html",
    "permissions": [
        "https:\/\/github.com\/",
        "storage"
    ]
}