Files
binaural-beats-generator/manifest.json
T
2023-08-12 17:26:43 -07:00

20 lines
478 B
JSON

{
"manifest_version": 3,
"name": "Binaural Beats Generator",
"version": "1.0",
"description": "Generate binaural beats to enhance cognitive functions.",
"permissions": ["storage", "activeTab", "tabs", "scripting"],
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
}
}