Chess Notifier

Chess Notifier

Get Chess.com browser notifications on your desktop.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chess Notifier",
  "description": "Get Chess.com browser notifications on your desktop.",
  "version": "0.2.0",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "node_modules/webextension-polyfill/dist/browser-polyfill.min.js",
      "background.js"
    ]
  },
  "permissions": [
    "*://api.chess.com/*",
    "tabs",
    "storage",
    "notifications"
  ],
  "icons": {
    "64": "icons/128/pawn_color.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "author": "Saša Stamenković",
  "browser_action": {
    "default_icon": "icons/128/pawn_color.png"
  }
}