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": "Gmail Inbox Cleaner",
"description": "Helps you clean your Gmail inbox using AI suggestions.",
"version": "11.0",
"permissions": [
"activeTab",
"scripting",
"storage",
"identity"
],
"host_permissions": [
"https:\/\/mail.google.com\/*"
],
"oauth2": {
"client_id": "517355381306-mjsq7r9m6veuefmb33174u7r41o20jm9.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/gmail.modify",
"https:\/\/www.googleapis.com\/auth\/userinfo.email",
"https:\/\/www.googleapis.com\/auth\/userinfo.profile"
]
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"sidepanel.html",
"sidepanel.js"
],
"matches": [
"https:\/\/mail.google.com\/*"
]
}
]
}