initial commit

This commit is contained in:
Илья Глазунов
2026-01-20 20:54:51 +03:00
commit c5e137d4aa
12 changed files with 1909 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"manifest_version": 3,
"name": "Reels Master",
"version": "1.0.0",
"description": "Instagram Reels volume control and download",
"background": {
"service_worker": "background/background.js"
},
"content_scripts": [
{
"matches": ["*://*.instagram.com/*"],
"js": ["content/content.js"],
"css": ["assets/content.css"],
"run_at": "document_end"
}
],
"permissions": ["storage"],
"host_permissions": ["*://*.instagram.com/*", "*://*.cdninstagram.com/*"]
}