Chess@Work Notifier

Chess@Work Notifier

Just check if it's your move on ChessAtWork & Co (RedHotPawn, RedHotChess, TimeForChess, TheImmortalGame)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chess@Work Notifier",
  "version": "1.0.3",
  "manifest_version": 2,
  "description": "Just check if it's your move on ChessAtWork & Co (RedHotPawn, RedHotChess, TimeForChess, TheImmortalGame)",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/chess-logout.png",
    "default_title": "Chess@Work Notifier"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.chessatwork.com/*",
        "https://www.redhotpawn.com/*",
        "https://www.redhotchess.com/*",
        "https://www.timeforchess.com/*",
        "https://www.playtheimmortalgame.com/*"
      ],
      "js": [
        "jquery-2.0.3.min.js",
        "caw_content_script.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "notifications",
    "https://www.chessatwork.com/*",
    "https://www.redhotpawn.com/*",
    "https://www.redhotchess.com/*",
    "https://www.timeforchess.com/*",
    "https://www.playtheimmortalgame.com/*"
  ],
  "short_name": "C@W Notifier"
}