Google Cloud Console Color Changer

Google Cloud Console Color Changer

Change the Google Cloud Console main color

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Cloud Console Color Changer",
  "version": "2.0.1",
  "description": "Change the Google Cloud Console main color",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://console.cloud.google.com/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "*://console.cloud.google.com/*"
      ],
      "js": [
        "app.js"
      ]
    }
  ],
  "options_ui": {
    "page": "ContactFrom_v5/index.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "ContactFrom_v5/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}