Z GMail Theme

Z GMail Theme

Change GMail for business logo

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Z GMail Theme",
  "version": "0.3",
  "description": "Change GMail for business logo",
  "icons": {
    "16": "img/icon_16.png",
    "19": "img/icon_19.png",
    "38": "img/icon_38.png",
    "128": "img/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "z.js"
      ]
    }
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "bg.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "16": "img/icon_16.png",
      "19": "img/icon_19.png",
      "38": "img/icon_38.png",
      "128": "img/icon_128.png"
    },
    "default_title": "Z GMail Theme",
    "default_popup": "popup.html"
  },
  "permissions": [
    "https://mail.google.com/*",
    "tabs",
    "storage"
  ],
  "manifest_version": 2
}