LGTM for Github
This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.
Wat is LGTM for Github?
LGTM for Github is een Chrome-extensie ontwikkeld door https://thetechtime.com, en de belangrijkste functie is "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.".
Extensie Screenshots
Download het CRX-bestand van de extensie LGTM for Github
Download LGTM for Github-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
Source code: https://github.com/geekrax/lgtm-chrome-extension Basisinformatie over de Extensie
| Naam | |
| ID | ckjpjogecpcibagiggbejclbihmochpn |
| Officiële URL | https://chromewebstore.google.com/detail/lgtm-for-github/ckjpjogecpcibagiggbejclbihmochpn |
| Beschrijving | This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut. |
| Bestandsgrootte | 32.36 KB |
| Aantal Installaties | 19 |
| Huidige Versie | 1.1 |
| Laatst Bijgewerkt | 2017-03-18 |
| Publicatiedatum | 2017-03-17 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | https://thetechtime.com |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
} | |