Customize Background

Customize Background

Customize your Background

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Customize Background",
  "version": "1.0",
  "description": "Customize your Background",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "icons": {},
  "browser_action": {
    "default_icon": "logo.png",
    "default_popup": "index.html",
    "default_title": "Background Changer"
  },
  "content_security_policy": "script-src 'self' 'sha256-XPXTT1UshpgwCgVqCHHlIsFwX/ez74PNQIN24esAYZs='; object-src 'self'",
  "background": {
    "scripts": [
      "public/code.js",
      "background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/content.js"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "public/redirect.html"
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "public/*"
  ]
}