PR Monitor
Get notified when you receive a pull request on GitHub.
什么是PR Monitor?
PR Monitor是由Zenc Labs开发的Chrome扩展程序,该扩展的主要功能是“Get notified when you receive a pull request on GitHub.”。
扩展截图
下载PR Monitor扩展crx文件
下载PR Monitor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
PR Monitor lets you easily manage your GitHub pull requests with the click of a button.
You'll get notified whenever you receive a new pull request to review, or when an existing pull request is ready for another review.
You can also access your own pull requests within a couple of clicks!
See https://github.com/fwouts/prmonitor for source code. 扩展基本信息
| 名称 | |
| ID | pneldbfhblmldbhmkolclpkijgnjcmng |
| 官方URL | https://chromewebstore.google.com/detail/pr-monitor/pneldbfhblmldbhmkolclpkijgnjcmng |
| 简介 | Get notified when you receive a pull request on GitHub. |
| 文件大小 | 376 KB |
| 安装次数 | 725 |
| 当前版本 | 0.10.7 |
| 更新时间 | 2023-06-21 |
| 上架时间 | 2020-06-05 |
| 评分 | 4.25/5 共8次评分 |
| 开发者 | Zenc Labs |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/fwouts/prmonitor |
| 帮助页面URL | https://github.com/fwouts/prmonitor/issues |
| 隐私政策页面URL | https://github.com/fwouts/prmonitor/blob/master/PRIVACY_POLICY.md |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "PR Monitor",
"version": "0.10.7",
"description": "Get notified when you receive a pull request on GitHub.",
"permissions": [
"alarms",
"notifications",
"storage"
],
"optional_permissions": [
"tabs"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_popup": "index.html#popup"
},
"icons": {
"48": "images\/logo48.png",
"96": "images\/logo96.png",
"128": "images\/logo128.png",
"256": "images\/logo256.png"
}
} | |