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": "Email Finder",
"short_name": "Email Finder",
"description": "Discover email addresses: enter a domain name and find all email IDs in seconds.",
"version": "1.0.2",
"permissions": [
"storage",
"tabs",
"webNavigation",
"cookies"
],
"action": {
"default_icon": {
"16": "icon16.png",
"19": "icon19.png",
"38": "icon38.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scripts\/jquery.min.js",
"scripts\/utils.js",
"content.js"
],
"run_at": "document_end"
}
],
"offline_enabled": true,
"web_accessible_resources": [
{
"resources": [
"scripts\/*.js",
"images\/*.png",
"images\/*.svg",
"css\/*.css"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "bgv3.js"
}
}