LGTM for Github
This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.
什么是LGTM for Github?
LGTM for Github是由https://thetechtime.com开发的Chrome扩展程序,该扩展的主要功能是“This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut.”。
扩展截图
下载LGTM for Github扩展crx文件
下载LGTM for Github扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Source code: https://github.com/geekrax/lgtm-chrome-extension 扩展基本信息
| 名称 | |
| ID | ckjpjogecpcibagiggbejclbihmochpn |
| 官方URL | https://chromewebstore.google.com/detail/lgtm-for-github/ckjpjogecpcibagiggbejclbihmochpn |
| 简介 | This extenion automatically adds configurable LGTM comment to github commits with a configurable keyboard shortcut. |
| 文件大小 | 32.36 KB |
| 安装次数 | 19 |
| 当前版本 | 1.1 |
| 更新时间 | 2017-03-18 |
| 上架时间 | 2017-03-17 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | https://thetechtime.com |
| 付费类型 | free |
| 支持的语言 | 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"
]
} | |