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.”。
扩展截图
下载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 |
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" ] } |