VR DarkMode by ITYC

VR DarkMode by ITYC

Apply a dark theme to Virtual Regatta site !

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "VR DarkMode by ITYC",
  "description": "Apply a dark theme to Virtual Regatta site !",
  "version": "1.0",
  "manifest_version": 3,
  "icons": {
    "16": "./img/icon16.png",
    "32": "./img/icon32.png",
    "48": "./img/icon48.png",
    "128": "./img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.virtualregatta.com/*"
      ],
      "run_at": "document_end",
      "css": [
        "./css/content.css"
      ]
    }
  ]
}