Stack notifications

Stack notifications

Tool to get Chrome notifications for Stack Exchange.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Stack notifications",
  "version": "0.1.3",
  "description": "Tool to get Chrome notifications for Stack Exchange.",
  "author": "Fralec",
  "homepage_url": "https://fralec.github.io/Stack-notifications",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "notifications",
    "contextMenus",
    "identity",
    "https://api.stackexchange.com/*",
    "http://cdn.sstatic.net/*"
  ],
  "browser_action": {
    "default_icon": "icons/se128.png",
    "default_title": "Stack notifications",
    "default_popup": "popup.html"
  },
  "oauth2": {
    "client_id": "7951",
    "scopes": [
      "no_expiry",
      "read_inbox"
    ]
  },
  "icons": {
    "16": "icons/se16.png",
    "32": "icons/se32.png",
    "128": "icons/se128.png"
  },
  "offline_enabled": false
}