mattermost-chrome-badge
A chrome plugin to show the number of unread messages in mattermost.
O que é mattermost-chrome-badge?
mattermost-chrome-badge é uma extensão do Chrome desenvolvida por Michel D, e sua principal característica é "A chrome plugin to show the number of unread messages in mattermost.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão mattermost-chrome-badge
Baixe arquivos de extensão mattermost-chrome-badge no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | mattermost-chrome-badge |
ID | ahmlpiknebpepidendbfmflbipgbioob |
URL Oficial | https://chromewebstore.google.com/detail/mattermost-chrome-badge/ahmlpiknebpepidendbfmflbipgbioob |
Descrição | A chrome plugin to show the number of unread messages in mattermost. |
Tamanho do Arquivo | 71.28 KB |
Contagem de Instalações | 1,135 |
Versão Atual | 1.1.1 |
Última Atualização | 2016-03-18 |
Data de Publicação | 2016-03-18 |
Classificação | 4.78/5 Total de 9 Avaliações |
Desenvolvedor | Michel D |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/dahdahm/mattermost-chrome-badge |
Idiomas Suportados | 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" ] } |