Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Email Exporter",
"version": "2.4",
"manifest_version": 3,
"description": "Extract all email addresses and phone numbers in a web page.",
"background": {
"service_worker": "scripts\/background.js"
},
"action": {
"default_icon": {
"38": "images\/icon-38.png"
},
"default_title": "Email Exporter",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"scripts\/content.js"
],
"run_at": "document_start"
}
],
"icons": {
"48": "images\/icon-48x48.png",
"128": "images\/icon-128x128.png"
}
}