Dateien nach "/" hochladen

This commit is contained in:
2025-12-20 18:03:26 +00:00
parent f4b4c22459
commit fe3b313549
5 changed files with 879 additions and 0 deletions

27
manifest.json Normal file
View File

@@ -0,0 +1,27 @@
{
"manifest_version": 3,
"name": "TG Downloader - Free & Unlimited",
"version": "1.4",
"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/*"]
}
]
}