GitHub Red Alert
Changes the notification icon to red if you have participating notifications
Что такое GitHub Red Alert?
GitHub Red Alert - это расширение Chrome, разработанное bitoiu, и его основная функция - "Changes the notification icon to red if you have participating notifications".
Скачать файл CRX расширения GitHub Red Alert
Скачайте файлы расширений GitHub Red Alert в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
As a GitHub user I pay very close attention to the Participating notification, i.e. the notifications you get from participating on a thread or being directly mentioned by others (by handle or team). Unfortunately just by looking at the notification bell, there's no way to distinguish if the notifications are participating or generally unread. Since I don't follow generic Unread notifications as closely as I do the Participating ones, I decided to augment the UI to distinguish the two.
Основная информация о расширении
Название | GitHub Red Alert |
ID | kmiekjkmkbhbnlempjkaombjjcfhdnfe |
Официальный URL | https://chromewebstore.google.com/detail/github-red-alert/kmiekjkmkbhbnlempjkaombjjcfhdnfe |
Описание | Changes the notification icon to red if you have participating notifications |
Размер файла | 2.98 MB |
Количество установок | 18 |
Текущая Версия | 0.11 |
Последнее Обновление | 2015-12-10 |
Дата публикации | 2015-12-10 |
Разработчик | bitoiu |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/bitoiu/github-red-alert |
URL страницы помощи | https://github.com/bitoiu/github-red-alert/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Red Alert", "version": "0.11", "description": "Changes the notification icon to red if you have participating notifications", "permissions": [ "https:\/\/github.com\/*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "vendor\/jquery\/dist\/jquery.js", "dist\/script.js" ], "css": [ "dist\/style.css" ] } ], "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "manifest_version": 2, "options_page": "dist\/options.html", "options_ui": { "page": "dist\/options.html", "chrome_style": true } } |