Hikaru and GothamChess Tell You to MOVE

Hikaru and GothamChess Tell You to MOVE

Hikaru and GothamChess remind you when you have spent too much time thinking on a move!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hikaru and GothamChess Tell You to MOVE",
  "version": "0.0.0.8",
  "description": "Hikaru and GothamChess remind you when you have spent too much time thinking on a move!",
  "content_scripts": [
    {
      "matches": [
        "*://*.chess.com/live*",
        "*://*.chess.com/game/live*",
        "*://*.chess.com/play/online*",
        "*://*.lichess.org/*"
      ],
      "js": [
        "js/config.js",
        "js/chessMoveReminder.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon/icon16.png",
    "48": "icon/icon48.png",
    "128": "icon/icon128.png"
  },
  "manifest_version": 2,
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "audio/*"
  ]
}