Group phabricator notifications
Groups phabricator notifications
Что такое Group phabricator notifications?
Group phabricator notifications - это расширение Chrome, разработанное joakin, и его основная функция - "Groups phabricator notifications".
Снимки экрана расширения
Скачать файл CRX расширения Group phabricator notifications
Скачайте файлы расширений Group phabricator notifications в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension makes the phabricator notifications be grouped per task, so that they are less noisy to read. You can expand the task to see the actual changes in it, or mark as read without even going to the task. Applies to all phabricator.*.* and *.phabricator.* urls. Source is at https://github.com/joakin/group-phabricator-notifications
Основная информация о расширении
Название | Group phabricator notifications |
ID | anjockgdedgaiionihlpdcjijpohipdj |
Официальный URL | https://chromewebstore.google.com/detail/group-phabricator-notific/anjockgdedgaiionihlpdcjijpohipdj |
Описание | Groups phabricator notifications |
Размер файла | 430 KB |
Количество установок | 36 |
Текущая Версия | 1.4 |
Последнее Обновление | 2020-06-06 |
Дата публикации | 2020-06-05 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | joakin |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/joakin/group-phabricator-notifications |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Group phabricator notifications", "description": "Groups phabricator notifications", "version": "1.4", "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "include_globs": [ "*:\/\/*.phabricator.*\/notification\/*", "*:\/\/phabricator.*.*\/notification\/*" ], "exclude_globs": [ "*:\/\/*\/notification\/query\/edit\/" ], "js": [ "index.js" ] } ], "permissions": [] } |