Yammer Desktop Notifier

Yammer Desktop Notifier

Yammer Desktop Notifier provides desktop notifications when you receive new private Yammer chat messages.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Yammer Desktop Notifier",
  "short_name": "Yammer Notifier",
  "description": "Yammer Desktop Notifier provides desktop notifications when you receive new private Yammer chat messages.",
  "version": "1.2.4",
  "author": "Jan Baykara <[email protected]>",
  "homepage_url": "https://github.com/janbaykara/Chrome-YammerMessageNotifications",
  "icons": {
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon128.png"
    },
    "default_title": "Toggle Yammer msg notifications"
  },
  "background": {
    "scripts": [
      "deps/lodash.js",
      "deps/jquery.js",
      "lib/Session.js",
      "lib/background.config.js",
      "lib/background.detectors.js",
      "lib/background.messenger.js",
      "lib/background.init.js",
      "lib/background.ui.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "webRequest",
    "activeTab",
    "tabs",
    "notifications",
    "<all_urls>"
  ]
}