manifest.json aktualisiert

This commit is contained in:
2025-12-21 15:18:27 +00:00
parent 8e640efa37
commit 53dfbbddaa

View File

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