LGTM

Set your default PR review on github

Qu'est-ce que LGTM ?

LGTM est une extension Chrome développée par wateret, et sa fonction principale est "Set your default PR review on github".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension LGTM

Téléchargez les fichiers d'extension LGTM au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        ** Who?
Github users

** What?
A button [LGTM] is inserted beside [Review Changes]. When the button is clicked, it fills "Submit your review" form
- Insert the default review comment
- Check "Approve" radio button

** When?
Review others' pull requests

** Where?
On Github(or Github Enterprise)

** Why?
Prevent Carpal Tunnel Syndrome
Enhance productivity


People are tired of typing "LGTM" and click "approve" button on your review comment. Especially when you review trivial commits or your project has a lot to review. If that is your case, this is the perfect solution for you.

Open source at: https://github.com/wateret/lgtm

% The extension icons are from "https://icons8.com", which are free PNG version.

#Github #Preset #Review                    

Informations de Base sur l'Extension

Nom LGTM LGTM
ID pkifelaabllbhdeeekikmlicmclokbfe
URL Officiel https://chromewebstore.google.com/detail/lgtm/pkifelaabllbhdeeekikmlicmclokbfe
Description Set your default PR review on github
Taille du Fichier 40.92 KB
Nombre d'Installations 51
Version Actuelle 1.0
Dernière Mise à Jour 2020-12-05
Date de Publication 2019-04-03
Évaluation 5.00/5 Total 2 Évaluations
Développeur wateret
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LGTM",
    "description": "Set your default PR review on github",
    "version": "1.0",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "icons": {
        "16": "img\/lgtm-16.png",
        "32": "img\/lgtm-32.png",
        "48": "img\/lgtm-48.png",
        "128": "img\/lgtm-128.png"
    },
    "manifest_version": 2
}