mattermost-chrome-badge
A chrome plugin to show the number of unread messages in mattermost.
Что такое mattermost-chrome-badge?
mattermost-chrome-badge - это расширение Chrome, разработанное Michel D, и его основная функция - "A chrome plugin to show the number of unread messages in mattermost.".
Снимки экрана расширения
Скачать файл CRX расширения mattermost-chrome-badge
Скачайте файлы расширений mattermost-chrome-badge в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A chrome badge that shows the number of unread private messages in Mattermost. It also shows if there are any new messages in channels or private groups. The badge has the following states: - grey icon with a question mark when the extension is not configured, black otherwise; - the number of unread private messages are shown in red; - the icon turns blue when there is one or more private group or channel unread messages.
Основная информация о расширении
Название | mattermost-chrome-badge |
ID | ahmlpiknebpepidendbfmflbipgbioob |
Официальный URL | https://chromewebstore.google.com/detail/mattermost-chrome-badge/ahmlpiknebpepidendbfmflbipgbioob |
Описание | A chrome plugin to show the number of unread messages in mattermost. |
Размер файла | 71.28 KB |
Количество установок | 1,135 |
Текущая Версия | 1.1.1 |
Последнее Обновление | 2016-03-18 |
Дата публикации | 2016-03-18 |
Рейтинг | 4.78/5 Всего 9 оценок |
Разработчик | Michel D |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/dahdahm/mattermost-chrome-badge |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "mattermost-chrome-badge", "version": "1.1.1", "manifest_version": 2, "description": "A chrome plugin to show the number of unread messages in mattermost.", "homepage_url": "https:\/\/github.com\/dahdahm\/mattermost-chrome-badge", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "96": "icons\/icon96.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "browser_action": { "default_icon": "icons\/icon96.png", "default_title": "Mattermost Chrome Badge" }, "options_ui": { "page": "src\/options\/options.html", "chrome_style": true }, "permissions": [ "tabs", "storage" ] } |