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": "VATIVE - AI Gmail Categorizer",
"version": "2.5.2",
"description": "A fully customizable AI powered category tool for your emails. Stay on top of your emails with VATIVE!",
"permissions": [
"storage",
"identity",
"activeTab"
],
"host_permissions": [
"https:\/\/gmail.googleapis.com\/*",
"https:\/\/mail.google.com\/*",
"https:\/\/api.openai.com\/"
],
"oauth2": {
"client_id": "479797366757-m678e0pls16g453nsmoue205r4hfsbeh.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/gmail.readonly"
]
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"contentScript.js"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}
}