Atmosphere Backgrounds

Atmosphere Backgrounds

Enhance your day to day browsing experience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Atmosphere Backgrounds",
  "version": "1.0.4",
  "description": "Enhance your day to day browsing experience",
  "manifest_version": 2,
  "author": "Your Name",
  "chrome_url_overrides": {
    "newtab": "./src/main.html"
  },
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "./src/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "static/favicon/logo.png"
  },
  "icons": {
    "16": "static/favicon/logo.png",
    "32": "static/favicon/logo.png",
    "42": "static/favicon/logo.png",
    "128": "static/favicon/logo.png"
  }
}