lichess-timewarning

lichess-timewarning

Warns lichess.org players when they are low on time with an audio sample

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "lichess-timewarning",
  "version": "0.1.4",
  "manifest_version": 2,
  "description": "Warns lichess.org players when they are low on time with an audio sample",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "http://*.lichess.org/*",
        "https://*.lichess.org/*"
      ],
      "css": [
        "styles/main.css"
      ],
      "js": [
        "scripts/lichess-timewarning.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "ogg/*"
  ],
  "permissions": [
    "storage"
  ]
}