LGTM reloaded

Use a keyboard shortcut to LGTM! pull requests in seconds.

Cos'è LGTM reloaded?

LGTM reloaded è un'estensione di Chrome sviluppata da https://www.mediavrog.net, e la sua funzione principale è "Use a keyboard shortcut to LGTM! pull requests in seconds.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione LGTM reloaded

Scarica i file di estensione LGTM reloaded in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Just click the LGTM button in the address bar or use the shortcut (Alt+L by default) to submit a LGTM, including a random gif to award the PR owner.

Works on github.com pull requests:
* If you are on "Conversation" tab: The plugin will create a comment.
* If you are on "Files changed" review tab: The plugin will "approve" the PR.

If you already have typed some comment into the textarea, the plugin will keep your text and just append the LGTM.
Enjoy your teamwork :)

You can configure the shortcuts in `More tools` > `Extensions` > `Keyboard Shortcuts`.
Icon by http://www.iconarchive.com/show/100-flat-2-icons-by-graphicloads.html                    

Informazioni di Base sull'Estensione

Nome LGTM reloaded LGTM reloaded
ID hefidgcceobmmaiekccmbjpdcmbjklej
URL Ufficiale https://chromewebstore.google.com/detail/lgtm-reloaded/hefidgcceobmmaiekccmbjpdcmbjklej
Descrizione Use a keyboard shortcut to LGTM! pull requests in seconds.
Dimensione del File 75.62 KB
Conteggio Installazioni 72
Versione Corrente 1.4.2
Ultimo Aggiornamento 2020-10-21
Data di Pubblicazione 2019-05-17
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore https://www.mediavrog.net
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://www.mediavrog.net/projects/lgtm/
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LGTM reloaded",
    "short_name": "LGTM!",
    "version": "1.4.2",
    "manifest_version": 2,
    "description": "Use a keyboard shortcut to LGTM! pull requests in seconds.",
    "homepage_url": "http:\/\/www.mediavrog.net\/projects\/lgtm\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "\/src\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Looks good to me!"
    },
    "commands": {
        "lgtm": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "LGTM! this pull request"
        },
        "lgtm_no_submit": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "LGTM! this pull request (without comment auto-submit)"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/lgtm.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/us-central1-lgtm-reloaded.cloudfunctions.net\/lgtm",
        "https:\/\/github.com\/",
        "declarativeContent"
    ]
}