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 |
| 官方網址 | 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"
}
} | |