Chrome Sound Effects

Chrome Sound Effects

Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrome Sound Effects",
  "version": "1.2",
  "description": "Add sounds to events triggered by user in Chrome, like switching tabs, etc. They can be manually disabled.",
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "options_page": "options.html",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "tabs",
    "bookmarks",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "options.html"
  },
  "manifest_version": 2
}