From 1f05ce764735a255555612e5aadbea7e0bb82ad6 Mon Sep 17 00:00:00 2001 From: pliny <133052465+elder-plinius@users.noreply.github.com> Date: Sat, 12 Aug 2023 17:16:28 -0700 Subject: [PATCH] Update manifest.json --- manifest.json | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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';" }