Audio Delay

Audio Delay

Add delay to audio

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Audio Delay",
  "description": "Add delay to audio",
  "version": "0.2.1",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/content.js"
      ]
    }
  ],
  "action": {
    "default_icon": "icons/128.png",
    "default_popup": "src/popup.html",
    "default_title": "Audio Delay"
  },
  "options_page": "src/options.html"
}