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 Group Scraper",
"version": "1.0.1",
"description": "A chrome extension that scrapes Telegram group for member details.",
"background": {
"service_worker": "service-worker.js"
},
"permissions": [
"sidePanel",
"tabs",
"scripting"
],
"host_permissions": [
"https:\/\/web.telegram.org\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/web.telegram.org\/*"
],
"js": [
"content.js"
]
}
],
"action": {
"default_title": "Open Telegram Group Members Scraper"
},
"icons": {
"16": "images\/icon-16.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
}
}