First Commit, Code by Claude 4.7 Opus

This commit is contained in:
Tronax 2026-05-14 00:10:32 +02:00
commit ec216264b1
4 changed files with 171 additions and 0 deletions

17
manifest.json Normal file
View file

@ -0,0 +1,17 @@
{
"manifest_version": 3,
"name": "Volume Booster",
"version": "1.0",
"description": "Boost audio up to 600%",
"permissions": ["activeTab", "storage"],
"action": {
"default_popup": "popup.html",
"default_title": "Volume Booster"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
]
}