PR Monitor
Get notified when you receive a pull request on GitHub.
Vad är PR Monitor?
PR Monitor är en Chrome-tillägg utvecklad av Zenc Labs, och dess huvudfunktion är "Get notified when you receive a pull request on GitHub.".
Tilläggsskärmbilder
Ladda ner PR Monitor-förlängningens CRX-fil
Ladda ner PR Monitor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | pneldbfhblmldbhmkolclpkijgnjcmng |
Officiell webbadress | https://chromewebstore.google.com/detail/pr-monitor/pneldbfhblmldbhmkolclpkijgnjcmng |
Beskrivning | Get notified when you receive a pull request on GitHub. |
Filstorlek | 376 KB |
Antal Installationer | 725 |
Aktuell Version | 0.10.7 |
Senast Uppdaterad | 2023-06-21 |
Publiceringsdatum | 2020-06-05 |
Betyg | 4.25/5 Totalt 8 Betyg |
Utvecklare | Zenc Labs |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/fwouts/prmonitor |
Hjälpsida URL | https://github.com/fwouts/prmonitor/issues |
URL till Sekretesspolicy Sidan | https://github.com/fwouts/prmonitor/blob/master/PRIVACY_POLICY.md |
Stödda Språk | 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" } } |