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": "Bulk Email Extractor - Collect Emails from Websites with Single Click",
"version": "1.2",
"description": "Extract emails from websites instantly. This extension scans pages & collects addresses with one click. Perfect for lead generation.",
"permissions": [
"activeTab",
"storage",
"clipboardWrite"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "popup.html",
"default_title": "Email Extractor Pro",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"icons\/*.png"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"commands": {
"extract-emails": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
},
"description": "Extract emails from current page"
},
"scan-site": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Scan entire site for emails"
}
},
"minimum_chrome_version": "88",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}