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": "YouTube\u2122 Binaural Retuner", "version": "1.0.1", "description": "Retune YouTube videos with binaural beats in real-time!", "permissions": [ "activeTab", "scripting", "storage", "tabs" ], "host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/music.youtube.com\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "icons": { "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/music.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "pitch-shift-worklet.js" ], "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/music.youtube.com\/*" ] } ] }