Reveal Desktop Notifications

Reveal Desktop Notifications

Get desktop notifications when people want to chat with you on Reveal.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reveal Desktop Notifications",
  "version": "0.2.1",
  "manifest_version": 2,
  "description": "Get desktop notifications when people want to chat with you on Reveal.",
  "icons": {
    "16": "/images/rv_logo_16x16.png",
    "48": "/images/rv_logo_48x48.png",
    "128": "/images/rv_logo_128x128.png"
  },
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.min.js",
        "src/inject/is_installed.js"
      ],
      "matches": [
        "*://revealchat.com/*",
        "*://*.revealchat.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "background",
    "idle",
    "notifications",
    "tabs",
    "cookies",
    "*://revealchat.com/*",
    "*://*.revealchat.com/*",
    "*://api.amplitude.com/*",
    "*://*.pubnub.com/*"
  ],
  "web_accessible_resources": [
    "/images/connect_green.png",
    "/images/icn_x_gray.png",
    "/images/rv_logo_blue_128x128.png",
    "/images/rv_logo_red_128x128.png",
    "/images/rv_no_connect_128x128.png",
    "/images/rv_logo_128x128.png"
  ]
}