LGTM reloaded
Use a keyboard shortcut to LGTM! pull requests in seconds.
Qu'est-ce que LGTM reloaded ?
LGTM reloaded est une extension Chrome développée par https://www.mediavrog.net, et sa fonction principale est "Use a keyboard shortcut to LGTM! pull requests in seconds.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension LGTM reloaded
Téléchargez les fichiers d'extension LGTM reloaded 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
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
Informations de Base sur l'Extension
Nom | LGTM reloaded |
ID | hefidgcceobmmaiekccmbjpdcmbjklej |
URL Officiel | https://chromewebstore.google.com/detail/lgtm-reloaded/hefidgcceobmmaiekccmbjpdcmbjklej |
Description | Use a keyboard shortcut to LGTM! pull requests in seconds. |
Taille du Fichier | 75.62 KB |
Nombre d'Installations | 72 |
Version Actuelle | 1.4.2 |
Dernière Mise à Jour | 2020-10-21 |
Date de Publication | 2019-05-17 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | https://www.mediavrog.net |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://www.mediavrog.net/projects/lgtm/ |
Langues Prises en Charge | 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" ] } |