Docs Dark 2.0

Docs Dark 2.0

Dark Theme for Docs with high contrast!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Docs Dark 2.0",
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://docs.google.com/document/*"
      ]
    }
  ],
  "description": "Dark Theme for Docs with high contrast!",
  "icons": {
    "128": "icon_128.png"
  },
  "permissions": [
    "storage"
  ],
  "version": "0.0.13",
  "web_accessible_resources": [
    {
      "matches": [
        "https://docs.google.com/*"
      ],
      "resources": [
        "css/dark_theme.css"
      ]
    }
  ],
  "manifest_version": 3
}