Approve Pull Request with image
Chrome extension to approve pull request with LGTM image
Approve Pull Request with imageとは何ですか?
Approve Pull Request with imageはmichiaki.mizoguchiによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension to approve pull request with LGTM image」です。
拡張機能のスクリーンショット
Approve Pull Request with image拡張機能のCRXファイルをダウンロード
Approve Pull Request with image拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
# Feature
- Copy and paste a random LGTM image to GitHub PR review textarea
- Save your favorite LGTM images to local storage and sync Chrome account
- Save as LGTM image from right click menu 拡張機能の基本情報
| 名前 | |
| ID | bmkigbjalmniajmclpbniddicijnapgh |
| 公式URL | https://chromewebstore.google.com/detail/approve-pull-request-with/bmkigbjalmniajmclpbniddicijnapgh |
| 説明 | Chrome extension to approve pull request with LGTM image |
| ファイルサイズ | 345 KB |
| インストール数 | 22 |
| 現在のバージョン | 2.0.0 |
| 最終更新日 | 2020-05-08 |
| 公開日 | 2020-05-01 |
| 開発者 | michiaki.mizoguchi |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Approve Pull Request with image",
"version": "2.0.0",
"manifest_version": 2,
"description": "Chrome extension to approve pull request with LGTM image",
"homepage_url": "https:\/\/github.com\/mizoguche\/approve-pr-with-image",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"scripts": [
"dist\/background.js"
],
"persistent": true
},
"options_page": "static\/option.html",
"browser_action": {
"default_icon": "icons\/icon19.png",
"default_title": "browser action demo",
"default_popup": "static\/browser_action.html"
},
"permissions": [
"clipboardWrite",
"contextMenus",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"dist\/inject.js"
]
}
]
} | |