mattermost-chrome-badge

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

Was ist mattermost-chrome-badge?

mattermost-chrome-badge ist eine Chrome-Erweiterung, die von Michel D entwickelt wurde, und ihr Hauptmerkmal ist "A chrome plugin to show the number of unread messages in mattermost.".

Erweiterungsscreenshots

screenshot

mattermost-chrome-badge-Erweiterungs-CRX-Datei herunterladen

Laden Sie mattermost-chrome-badge-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name mattermost-chrome-badge mattermost-chrome-badge
ID ahmlpiknebpepidendbfmflbipgbioob
Offizielle URL https://chromewebstore.google.com/detail/mattermost-chrome-badge/ahmlpiknebpepidendbfmflbipgbioob
Beschreibung A chrome plugin to show the number of unread messages in mattermost.
Dateigröße 71.28 KB
Installationsanzahl 1,135
Aktuelle Version 1.1.1
Letztes Update 2016-03-18
Veröffentlichungsdatum 2016-03-18
Bewertung 4.78/5 Insgesamt 9 Bewertungen
Entwickler Michel D
Zahlungsart free
Erweiterungswebsite https://github.com/dahdahm/mattermost-chrome-badge
Unterstützte Sprachen 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"
    ]
}