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": "Maps Leads Extractor & Bing Maps Scraper",
"description": "Bing Maps scraper for lead generation. Extract business data, phone numbers, and emails. One-click export to CSV\/Excel.",
"version": "1.0.0",
"icons": {
"128": "icon\/128.png"
},
"action": [],
"permissions": [
"storage",
"webRequest"
],
"host_permissions": [
"*:\/\/*.bing.com\/*",
"*:\/\/*.echobot.dev\/*"
],
"web_accessible_resources": [
{
"resources": [
"keywords.html"
],
"matches": [
"*:\/\/*.bing.com\/*"
]
},
{
"resources": [
"content-scripts\/ui.css"
],
"matches": [
"*:\/\/*.bing.com\/*"
]
}
],
"background": {
"type": "module",
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/mapsextractor.echobot.dev\/auth_redirect*"
],
"all_frames": false,
"run_at": "document_end",
"js": [
"content-scripts\/auth.js"
]
},
{
"matches": [
"https:\/\/echobot.dev\/mapsextractor\/checkout*"
],
"all_frames": false,
"run_at": "document_end",
"js": [
"content-scripts\/payCallback.js"
]
},
{
"matches": [
"*:\/\/*.bing.com\/*"
],
"all_frames": false,
"run_at": "document_end",
"js": [
"content-scripts\/ui.js"
]
}
]
}