Download Sound

Download Sound

Plays a sound or utters a text using speech synthesis when a download is completed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Download Sound",
  "version": "1.7",
  "description": "Plays a sound or utters a text using speech synthesis when a download is completed.",
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "downloads",
    "storage",
    "notifications",
    "tts"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": "icons/icon_19.png"
  }
}