Files
TG-Video-Downloader/manifest.json
2025-12-21 15:18:27 +00:00

27 lines
636 B
JSON

{
"manifest_version": 3,
"name": "TG Downloader - Free & Unlimited",
"version": "1.5",
"description": "Download Videos & Bilder aus Telegram Web.",
"permissions": ["storage", "downloads"],
"host_permissions": ["https://web.telegram.org/*"],
"icons": {
"128": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://web.telegram.org/*"],
"js": ["content_tg.js"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": ["inject.js"],
"matches": ["https://web.telegram.org/*"]
}
]
}