LGTM for Github

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

Apa itu LGTM for Github?

LGTM for Github adalah ekstensi Chrome yang dikembangkan oleh https://thetechtime.com, dan fitur utamanya adalah "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi LGTM for Github

Unduh file ekstensi LGTM for Github dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama LGTM for Github LGTM for Github
ID ckjpjogecpcibagiggbejclbihmochpn
URL Resmi https://chromewebstore.google.com/detail/lgtm-for-github/ckjpjogecpcibagiggbejclbihmochpn
Deskripsi This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.
Ukuran File 32.36 KB
Jumlah Instalasi 19
Versi Saat Ini 1.1
Terakhir Diperbarui 2017-03-18
Tanggal Publikasi 2017-03-17
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://thetechtime.com
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}