Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Telegram Media Downloader",
"version": "4.1",
"description": "Automatically download media files (images, videos, documents, audio) from Telegram chats and groups.",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"host_permissions": [
"https:\/\/web.telegram.org\/*",
"https:\/\/*.telegram.org\/*",
"https:\/\/*.telegram-cdn.org\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/web.telegram.org\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"jszip.min.js"
],
"matches": [
"https:\/\/web.telegram.org\/*"
]
}
]
}