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": "CleanSweep Mail",
"version": "1.0.6",
"description": "Automatically clean Gmail Promotions, Social, and Spam emails with one click.",
"permissions": [
"identity",
"storage",
"activeTab"
],
"host_permissions": [
"https:\/\/mail.google.com\/*",
"https:\/\/www.googleapis.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"content.js"
],
"css": [
"sidebar.css"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"oauth2": {
"client_id": "416222348975-8mfrimq25r4p0ge39hgb8q354bnj9bsf.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/gmail.modify",
"https:\/\/www.googleapis.com\/auth\/userinfo.profile",
"https:\/\/www.googleapis.com\/auth\/userinfo.email",
"https:\/\/www.googleapis.com\/auth\/gmail.readonly",
"https:\/\/www.googleapis.com\/auth\/gmail.compose"
]
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline' https:\/\/fonts.googleapis.com https:\/\/cdnjs.cloudflare.com; font-src https:\/\/fonts.gstatic.com https:\/\/cdnjs.cloudflare.com;"
}
}