Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Vibes - Pitch Changer, Speed Controls, & Reverb",
"default_locale": "en",
"version": "1.0.6",
"description": "Pitch shifter, speed controller & reverb for any video or audio. Includes slowed+reverb, nightcore presets & an encouragement crab!",
"permissions": [
"activeTab",
"scripting",
"storage",
"tabCapture",
"offscreen"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "resources\/icon16.png",
"48": "resources\/icon48.png",
"128": "resources\/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"backend\/fast\/fast-main.js"
],
"run_at": "document_start",
"world": "MAIN",
"all_frames": false
},
{
"matches": [
"<all_urls>"
],
"js": [
"config.js",
"backend\/fast\/fast-bridge.js"
],
"run_at": "document_start",
"world": "ISOLATED",
"all_frames": false
},
{
"matches": [
"<all_urls>"
],
"js": [
"backend\/audio\/freeverb-new.js",
"backend\/content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"backend\/audio\/audio-config.js",
"backend\/audio\/freeverb-processor.js",
"backend\/audio\/jungle.js",
"lang\/languages.json",
"lang\/*\/ui.json",
"lang\/*\/quotes.json",
"lang\/*\/premium\/*.json"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "resources\/icon16.png",
"48": "resources\/icon48.png",
"128": "resources\/icon128.png"
}
}