Roll20 Dark Mode Fix

Roll20 Dark Mode Fix

A quick fix for the new Dark Mode in Roll20 to fix some colours

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Roll20 Dark Mode Fix",
  "version": "0.0.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "description": "A quick fix for the new Dark Mode in Roll20 to fix some colours",
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "matches": [
        "https://app.roll20.net/editor/"
      ]
    }
  ]
}