reels-master/src/manifest.firefox.json
Илья Глазунов d545434815
All checks were successful
Build and Release Extension / build (push) Successful in 25s
Bump version to 1.2.1 and enhance build scripts for better Firefox compatibility
2026-04-19 16:45:28 +03:00

27 lines
877 B
JSON

{
"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": {
"scripts": ["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"
}
}
}