init working

This commit is contained in:
Bad
2025-09-28 10:47:26 +03:00
commit 4f7af6d768
5 changed files with 106 additions and 0 deletions

17
manifest.json Normal file
View File

@ -0,0 +1,17 @@
{
"manifest_version": 3,
"name": "YT Volume Slider",
"version": "1.0",
"description": "very fancy, very nice",
"permissions": [
"activeTab",
"scripting"
],
"action": {
"default_popup": "popup.html",
"default_title": "Volume Slider"
},
"background": {
"service_worker": "background.js"
}
}