diff --git a/manifest.json b/manifest.json index 8024b16..37c061b 100644 --- a/manifest.json +++ b/manifest.json @@ -3,14 +3,16 @@ "name": "Binaural Beats Generator", "version": "1.0", "description": "Generate binaural beats to enhance cognitive functions.", - "permissions": ["storage", "activeTab"], - "background": { - "page": "background.html", - "persistent": true - }, + "permissions": ["storage", "activeTab", "tabs", "scripting"], "action": { "default_popup": "popup.html" }, + "content_scripts": [ + { + "matches": [""], + "js": ["content.js"] + } + ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';" }