Sounds Plus

Sounds Plus

Add sound effects to Google Chrome with Sounds Plus!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sounds Plus",
  "version": "1.0",
  "description": "Add sound effects to Google Chrome with Sounds Plus!",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "author": "Martin",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js",
      "jquery.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "content.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "offline_enabled": true,
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "sounds/*"
  ]
}