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",
"name": "Telegram Downloader",
"description": "Allow download telegram media from channels or groups with media protection",
"version": "1.4.0",
"short_name": "Tg Downloader",
"manifest_version": 3,
"permissions": [
"activeTab",
"tabs",
"webRequest",
"webRequestBlocking",
"downloads"
],
"host_permissions": [
"https:\/\/web.telegram.org\/k"
],
"icons": {
"16": "16x16.png",
"48": "48x48.png",
"128": "128x128.png",
"256": "256x256.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.web.telegram.org\/*"
],
"js": [
"content_script.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "index.html",
"default_title": "Telegram downloader",
"default_icon": {
"48": "48x48.png"
}
}
}