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": "Supermail: AI Email Assistant for Work & Productivity",
"version": "1.0.17",
"description": "Supermail: The smart tool that transforms email into a powerful, professional communication hub, polished, and effortless.",
"host_permissions": [
"https:\/\/mail.google.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"content.js",
"helper.js",
"openai.js",
"profileUtils.js"
],
"css": [
"styles.css"
]
}
],
"permissions": [
"storage",
"contextMenus"
],
"action": {
"default_popup": "popup-new.html",
"default_icon": {
"16": "images\/16x16.png",
"24": "images\/24x24.png",
"48": "images\/48x48.png",
"128": "images\/128x128.png"
}
},
"icons": {
"16": "images\/16x16.png",
"24": "images\/24x24.png",
"48": "images\/48x48.png",
"128": "images\/128x128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
}
}