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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    ]
}