added firefox compatibility

This commit is contained in:
Илья Глазунов
2026-04-10 05:05:01 +03:00
parent 2361df7da9
commit 9f826036a6
7 changed files with 65 additions and 37 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"manifest_version": 3,
"name": "Reels Master",
"version": "1.1.2",
"description": "Enhance your Instagram experience with Reels Master - download reels, seek through videos, and more!",
"background": {
"service_worker": "background/background.js"
},
"homepage_url": "https://shiftyspace.ru",
"author": "ShiftyX1",
"content_scripts": [
{
"matches": ["*://*.instagram.com/*"],
"js": ["content/content.js"],
"css": ["assets/content.css"],
"run_at": "document_end"
}
],
"permissions": ["storage", "downloads"],
"host_permissions": ["*://*.instagram.com/*", "*://*.cdninstagram.com/*", "https://i.instagram.com/*", "*://*.fbcdn.net/*"],
"browser_specific_settings": {
"gecko": {
"id": "reels-master@shiftyspace.ru",
"strict_min_version": "121.0"
}
}
}