Desktop notifications for Stack Exchange's inbox

Desktop notifications for Stack Exchange's inbox

Real-time desktop notifications for Stack Exchange's inbox. The inbox content is also shown in the panel at the extension button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "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.3resigned1",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "storage-sync-polyfill.js",
      "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"
  },
  "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"
  ],
  "applications": {
    "gecko": {
      "id": "stackexchange-notifications@jetpack"
    }
  }
}