Lichess Time Bar

Lichess Time Bar

Changes the time bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Lichess Time Bar",
  "version": "3.5",
  "description": "Changes the time bar.",
  "background": {
    "persistent": false,
    "scripts": [
      "content.js",
      "jquery.min.js"
    ]
  },
  "permissions": [
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Gvn",
    "default_icon": "clock.png",
    "default_popup": "clock.html"
  },
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'"
}