Cadenza - Youtube Pitch Shifter

Cadenza - Youtube Pitch Shifter

Pitch shift the audio on Youtube, designed for all music lovers, especially for jazz guitarists.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cadenza - Youtube Pitch Shifter",
  "short_name": "Cadenza",
  "version": "1.2",
  "description": "Pitch shift the audio on Youtube, designed for all music lovers, especially for jazz guitarists.",
  "author": "Adrian Hsu, Foxdog Studios",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "controls.html"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jungle.js",
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "controls.js",
    "controls.html"
  ]
}