mattermost-chrome-badge

mattermost-chrome-badge

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

Merlin
Additional files are visible only to premium users

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"
  ]
}