Change the speed and pitch of streaming music and videos, independently.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Music Speed Changer",
"version": "0.9",
"minimum_chrome_version": "72",
"description": "Change the speed and pitch of streaming music and videos, independently.",
"permissions": [
"activeTab",
"tabCapture"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/music_speed_changer16.png",
"32": "images/music_speed_changer32.png",
"48": "images/music_speed_changer48.png",
"128": "images/music_speed_changer128.png"
}
},
"background": {
"scripts": [
"superpowered-worker.js",
"background.js"
],
"persistent": true
},
"icons": {
"16": "images/music_speed_changer16.png",
"32": "images/music_speed_changer32.png",
"48": "images/music_speed_changer48.png",
"128": "images/music_speed_changer128.png"
},
"manifest_version": 2,
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}