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": "AI Email Assistant (Gemini)",
"short_name": "BiScript AI",
"version": "1.0",
"description": "Professional AI-powered email assistant with smart replies, draft improvement, quick responses, and custom instruction using.",
"author": "BiScript by Carl Max siano",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/mail.google.com\/*",
"https:\/\/generativelanguage.googleapis.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"options_page": "options.html",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}