PR Monitor
Get notified when you receive a pull request on GitHub.
Was ist PR Monitor?
PR Monitor ist eine Chrome-Erweiterung, die von Zenc Labs entwickelt wurde, und ihr Hauptmerkmal ist "Get notified when you receive a pull request on GitHub.".
Erweiterungsscreenshots
PR Monitor-Erweiterungs-CRX-Datei herunterladen
Laden Sie PR Monitor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | pneldbfhblmldbhmkolclpkijgnjcmng |
Offizielle URL | https://chromewebstore.google.com/detail/pr-monitor/pneldbfhblmldbhmkolclpkijgnjcmng |
Beschreibung | Get notified when you receive a pull request on GitHub. |
Dateigröße | 376 KB |
Installationsanzahl | 725 |
Aktuelle Version | 0.10.7 |
Letztes Update | 2023-06-21 |
Veröffentlichungsdatum | 2020-06-05 |
Bewertung | 4.25/5 Insgesamt 8 Bewertungen |
Entwickler | Zenc Labs |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/fwouts/prmonitor |
Hilfeseite URL | https://github.com/fwouts/prmonitor/issues |
URL der Datenschutzrichtlinien-Seite | https://github.com/fwouts/prmonitor/blob/master/PRIVACY_POLICY.md |
Unterstützte Sprachen | 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" } } |