Desktop Notifications for Stack Exchange

Desktop Notifications for Stack Exchange

Real-time desktop notifications for the Stack Exchange.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Desktop Notifications for Stack Exchange",
  "description": "Real-time desktop notifications for the Stack Exchange.",
  "homepage_url": "https://stackapps.com/q/3780/9699",
  "version": "2.2",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "localStorage-proxy.js",
      "stackexchange-inbox-api.js",
      "stackexchange-inbox-api-chrome.js",
      "using-websocket.js",
      "bridge.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://stackexchange.com/oauth/login_success*"
      ],
      "run_at": "document_end",
      "js": [
        "login_success.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "optional_permissions": [
    "background"
  ],
  "browser_action": {
    "default_popup": "inbox.html",
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    }
  },
  "icons": {
    "48": "icon48.png",
    "128": "icon.png"
  },
  "permissions": [
    "https://api.stackexchange.com/*",
    "notifications",
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}