CozyCave

CozyCave

Mix and match your favorite atmosphere sounds for a more relaxing and focused browsing experience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CozyCave",
  "version": "1.0",
  "description": "Mix and match your favorite atmosphere sounds for a more relaxing and focused browsing experience",
  "permissions": [
    "declarativeContent",
    "storage",
    "background"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "rain1.mp3",
    "train.mp3",
    "snowstorm.mp3",
    "thunder.mp3",
    "fireplace.mp3",
    "cafe.mp3"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/cclogo16.png",
      "32": "images/cclogo32.png",
      "48": "images/cclogo48.png",
      "128": "images/cclogo128.png"
    }
  },
  "icons": {
    "16": "images/cclogo16.png",
    "32": "images/cclogo32.png",
    "48": "images/cclogo48.png",
    "128": "images/cclogo128.png"
  },
  "manifest_version": 2
}