mattermost-chrome-badge

A chrome plugin to show the number of unread messages in mattermost.

Cos'è mattermost-chrome-badge?

mattermost-chrome-badge è un'estensione di Chrome sviluppata da Michel D, e la sua funzione principale è "A chrome plugin to show the number of unread messages in mattermost.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione mattermost-chrome-badge

Scarica i file di estensione mattermost-chrome-badge in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome mattermost-chrome-badge mattermost-chrome-badge
ID ahmlpiknebpepidendbfmflbipgbioob
URL Ufficiale https://chromewebstore.google.com/detail/mattermost-chrome-badge/ahmlpiknebpepidendbfmflbipgbioob
Descrizione A chrome plugin to show the number of unread messages in mattermost.
Dimensione del File 71.28 KB
Conteggio Installazioni 1,135
Versione Corrente 1.1.1
Ultimo Aggiornamento 2016-03-18
Data di Pubblicazione 2016-03-18
Valutazione 4.78/5 Totale 9 Valutazioni
Sviluppatore Michel D
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/dahdahm/mattermost-chrome-badge
Lingue Supportate 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"
    ]
}