mattermost-chrome-badge

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

什麼是mattermost-chrome-badge?

mattermost-chrome-badge是由Michel D開發的Chrome擴展程式,該擴展的主要功能是“A chrome plugin to show the number of unread messages in mattermost.”。

擴展截圖

screenshot

下載mattermost-chrome-badge擴展crx文件

下載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 mattermost-chrome-badge
ID ahmlpiknebpepidendbfmflbipgbioob
官方網址 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"
    ]
}