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": "AI-Powered DJ Extension",
"version": "1.0.0",
"description": "Transform any website into a professional DJ station with AI-powered audio effects and controls",
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https:\/\/*.youtube.com\/*",
"https:\/\/*.spotify.com\/*",
"https:\/\/*.soundcloud.com\/*"
],
"background": {
"service_worker": "background\/service-worker.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*",
"https:\/\/*.spotify.com\/*",
"https:\/\/*.soundcloud.com\/*"
],
"js": [
"lib\/equalizer-processor.js",
"content\/audio-detector.js",
"content\/audio-processor.js",
"content\/effects-engine.js",
"content\/sound-launchpad.js",
"content\/visual-effects.js",
"content\/content-script.js"
],
"css": [
"content\/overlay.css"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup\/popup.html",
"default_title": "AI DJ Controls",
"default_icon": {
"16": "assets\/icons\/icon16.png",
"32": "assets\/icons\/icon32.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
}
},
"options_page": "options\/index.html",
"icons": {
"16": "assets\/icons\/icon16.png",
"32": "assets\/icons\/icon32.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline';"
},
"web_accessible_resources": [
{
"resources": [
"assets\/samples\/*",
"assets\/impulse-responses\/*",
"lib\/*",
"popup\/css\/*",
"popup\/js\/*"
],
"matches": [
"<all_urls>"
]
}
]
}