LGTM for Github
This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.
Hvad er LGTM for Github?
LGTM for Github er en Chrome-udvidelse udviklet af https://thetechtime.com, og dens hovedfunktion er "This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.".
Udvidelsesskærmbilleder
Download LGTM for Github-udvidelses-CRX-fil
Download LGTM for Github-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Source code: https://github.com/geekrax/lgtm-chrome-extension Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ckjpjogecpcibagiggbejclbihmochpn |
| Officiel URL | https://chromewebstore.google.com/detail/lgtm-for-github/ckjpjogecpcibagiggbejclbihmochpn |
| Beskrivelse | This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut. |
| Filstørrelse | 32.36 KB |
| Antal Installationer | 19 |
| Nuværende Version | 1.1 |
| Senest Opdateret | 2017-03-18 |
| Udgivelsesdato | 2017-03-17 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | https://thetechtime.com |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
]
} | |