Chess.com Daily Games Limit

Chess.com Daily Games Limit

Limits the number of daily games at chess.com to avoid addiction. Set your daily limit in the popup window and enjoy the game!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Chess.com Daily Games Limit",
  "version": "1.2",
  "description": "Limits the number of daily games at chess.com to avoid addiction. Set your daily limit in the popup window and enjoy the game!",
  "icons": {
    "48": "icons/chess.png"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popups/chess_popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.chess.com/*"
      ],
      "js": [
        "chess_limit.js"
      ]
    }
  ]
}