StackOverflow Inbox Notifications

StackOverflow Inbox Notifications

See when you receive inbox notifications from StackOverflow

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "StackOverflow Inbox Notifications",
  "version": "1.3.1",
  "description": "See when you receive inbox notifications from StackOverflow",
  "icons": {
    "128": "resources/images/extension.jpg"
  },
  "browser_action": {
    "default_icon": "resources/images/stackoverflow_16.png",
    "default_popup": "ui/index.html"
  },
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://api.stackexchange.com; object-src 'self'",
  "permissions": [
    "identity",
    "https://stackexchange.com/*/*",
    "notifications"
  ]
}