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"
]
}
]
} | |