PR Monitor
Get notified when you receive a pull request on GitHub.
Что такое PR Monitor?
PR Monitor - это расширение Chrome, разработанное Zenc Labs, и его основная функция - "Get notified when you receive a pull request on GitHub.".
Снимки экрана расширения
Скачать файл CRX расширения PR Monitor
Скачайте файлы расширений 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" } } |