inbox-bg

inbox-bg

customize inbox background image

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "inbox-bg",
  "description": "customize inbox background image",
  "version": "1.2",
  "content_security_policy": "script-src 'self'; object-src 'self'; img-src *;",
  "content_scripts": [
    {
      "matches": [
        "https://inbox.google.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "bg.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "https://inbox.google.com/*"
  ],
  "browser_action": {
    "default_title": "Inbox-BG",
    "default_popup": "bg.html"
  },
  "web_accessible_resources": [
    "bg.css",
    "bg.jpg"
  ]
}