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": "Kooni AI - Instantly Polished Emails",
"short_name": "Kooni AI",
"version": "1.0.5",
"description": "Instantly polish your Gmail emails. Transform plain text into professional emails with one click.",
"author": "Kooni AI",
"homepage_url": "https:\/\/kooni.ai",
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https:\/\/mail.google.com\/*",
"https:\/\/kooni.ai\/*",
"https:\/\/www.kooni.ai\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/kooni.ai\/*",
"https:\/\/www.kooni.ai\/*"
],
"js": [
"web-auth.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"web_accessible_resources": [
{
"resources": [
"icons\/*",
"*.js"
],
"matches": [
"https:\/\/mail.google.com\/*"
]
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}