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 |
| 公式URL | 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 |
| Eメール | [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"
]
} | |