Bring the black back

Bring the black back

A lightweight Gmail extension that makes your compose window title bar black again!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bring the black back",
  "version": "1.0",
  "action": {
    "default_popup": "hello.html",
    "default_icon": {
      "16": "/images/Icon.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*.png",
        "/images/*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "https://mail.google.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "myapp.js"
      ]
    }
  ]
}