Styled Background

Styled Background

Display home and new tab background with different background images

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Styled Background",
  "description": "Display home and new tab background with different background images",
  "version": "1.0.1",
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon128.png",
    "default_popup": "popup.html"
  },
  "incognito": "not_allowed",
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "js/popup.js"
    ]
  }
}