LGTM reloaded
Use a keyboard shortcut to LGTM! pull requests in seconds.
什麼是LGTM reloaded?
LGTM reloaded是由https://www.mediavrog.net開發的Chrome擴展程式,該擴展的主要功能是“Use a keyboard shortcut to LGTM! pull requests in seconds.”。
擴展截圖
下載LGTM reloaded擴展crx文件
下載LGTM reloaded擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | hefidgcceobmmaiekccmbjpdcmbjklej |
| 官方網址 | https://chromewebstore.google.com/detail/lgtm-reloaded/hefidgcceobmmaiekccmbjpdcmbjklej |
| 簡介 | Use a keyboard shortcut to LGTM! pull requests in seconds. |
| 檔案大小 | 75.62 KB |
| 安裝次數 | 72 |
| 目前版本 | 1.4.2 |
| 更新時間 | 2020-10-21 |
| 上架時間 | 2019-05-17 |
| 評分 | 5.00/5 共 3 次評分 |
| 開發者 | https://www.mediavrog.net |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | http://www.mediavrog.net/projects/lgtm/ |
| 支援的語言 | 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"
]
} | |