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",
"name": "Email Scraper",
"version": "1.0",
"description": "Automatically Scrape Emails and Download them in Excel File",
"permissions": [
"activeTab",
"storage"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/email16.png",
"32": "images\/email32.png",
"48": "images\/email48.png",
"128": "images\/email128.png"
}
},
"icons": {
"16": "images\/email16.png",
"32": "images\/email32.png",
"48": "images\/email48.png",
"128": "images\/email128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.google.com\/*"
],
"js": [
"content.js"
]
}
],
"manifest_version": 2
}