Google Drive Dark Mode

Google Drive Dark Mode

Dark mode for Google Drive!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Drive Dark Mode",
  "version": "1.0.4",
  "description": "Dark mode for Google Drive!",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://drive.google.com/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "icons": {
    "128": "images/logo.png"
  },
  "action": {
    "default_icon": "images/logo.png"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "main.css",
        "permanent.css",
        "images/moon.png",
        "images/sun.png",
        "images/paypal.png",
        "images/logo.png"
      ],
      "matches": [
        "https://drive.google.com/*",
        "https://docs.google.com/*"
      ]
    }
  ]
}