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
擴展基本資訊
名稱 | Approve Pull Request with image |
ID | bmkigbjalmniajmclpbniddicijnapgh |
官方網址 | 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" ] } ] } |