Approve Pull Request with image
Chrome extension to approve pull request with LGTM image
Approve Pull Request with imageคืออะไร?
Approve Pull Request with image เป็นส่วนขยายของ Chrome ที่พัฒนาโดย michiaki.mizoguchi และคุณลักษณะหลักของมันคือ "Chrome extension to approve pull request with LGTM image"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Approve Pull Request with image
ดาวน์โหลดไฟล์ส่วนขยาย 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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Approve Pull Request with image |
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" ] } ] } |