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": "MailScoop - Download Email Addresses from Gmail",
"version": "1.2.0",
"description": "Export email addresses from Gmail folders and download the email list in a CSV or JSON.",
"icons": {
"16": "logo192.png",
"48": "logo192.png",
"128": "logo192.png"
},
"background": {
"service_worker": ".\/static\/js\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
".\/static\/js\/content.js"
]
}
],
"action": {
"default_icon": {
"16": "logo192.png",
"48": "logo192.png",
"128": "logo192.png"
}
},
"permissions": [
"identity",
"storage"
],
"host_permissions": [
"https:\/\/gmail.googleapis.com\/*",
"https:\/\/www.googleapis.com\/*"
],
"oauth2": {
"client_id": "224866545629-gp2vvsma1t0jv505hhaf0gdorakj58tu.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/gmail.metadata",
"https:\/\/www.googleapis.com\/auth\/userinfo.email",
"https:\/\/www.googleapis.com\/auth\/userinfo.profile"
]
}
}