LGTM for Github

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

Vad är LGTM for Github?

LGTM for Github är en Chrome-tillägg utvecklad av https://thetechtime.com, och dess huvudfunktion är "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.".

Tilläggsskärmbilder

screenshot

Ladda ner LGTM for Github-förlängningens CRX-fil

Ladda ner LGTM for Github-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn LGTM for Github LGTM for Github
ID ckjpjogecpcibagiggbejclbihmochpn
Officiell webbadress https://chromewebstore.google.com/detail/lgtm-for-github/ckjpjogecpcibagiggbejclbihmochpn
Beskrivning This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.
Filstorlek 32.36 KB
Antal Installationer 19
Aktuell Version 1.1
Senast Uppdaterad 2017-03-18
Publiceringsdatum 2017-03-17
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://thetechtime.com
Betalningssätt free
Stödda Språk 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"
    ]
}