LGTM

Set your default PR review on github

Wat is LGTM?

LGTM is een Chrome-extensie ontwikkeld door wateret, en de belangrijkste functie is "Set your default PR review on github".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie LGTM

Download LGTM-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        ** 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                    

Basisinformatie over de Extensie

Naam LGTM LGTM
ID pkifelaabllbhdeeekikmlicmclokbfe
Officiële URL https://chromewebstore.google.com/detail/lgtm/pkifelaabllbhdeeekikmlicmclokbfe
Beschrijving Set your default PR review on github
Bestandsgrootte 40.92 KB
Aantal Installaties 51
Huidige Versie 1.0
Laatst Bijgewerkt 2020-12-05
Publicatiedatum 2019-04-03
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar wateret
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}