Transpose ▲▼ pitch ▹ speed ▹ loop for videos

Transpose ▲▼ pitch ▹ speed ▹ loop for videos

Pitch shifter, speed changer and looper for online videos like YouTube. Musician's toolbox for practicing and rehearsing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "minimum_chrome_version": "96",
  "name": "Transpose ▲▼ pitch ▹ speed ▹ loop for videos",
  "short_name": "Transpose ▲▼",
  "version": "5.1.4",
  "description": "Pitch shifter, speed changer and looper for online videos like YouTube. Musician's toolbox for practicing and rehearsing.",
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "author": "Tune73",
  "homepage_url": "https://transpose.video",
  "permissions": [
    "scripting",
    "activeTab",
    "storage"
  ],
  "optional_permissions": [
    "tabCapture"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_icon": "icons/icon.png",
    "default_popup": "controls.html"
  },
  "background": {
    "service_worker": "scripts/background-bundle.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self';  object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/audioworklet-pitch-hq-processor.js",
        "scripts/content-getmedia.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}