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": "ChromeAiAgent",
"version": "2.3.3",
"description": "AI assistant for browser automation with natural language commands and intelligent web page interaction.",
"permissions": [
"storage",
"sidePanel",
"activeTab",
"tabs",
"identity",
"cookies",
"scripting",
"tabGroups"
],
"host_permissions": [
"https:\/\/api.openai.com\/*",
"https:\/\/models.inference.ai.azure.com\/*",
"https:\/\/models.github.ai\/*",
"https:\/\/api.groq.com\/*",
"https:\/\/api.deepseek.com\/*",
"https:\/\/api.perplexity.ai\/*",
"https:\/\/api.anthropic.com\/*",
"https:\/\/generativelanguage.googleapis.com\/*",
"https:\/\/claude.ai\/*",
"https:\/\/*.openai.azure.com\/*",
"https:\/\/*.ai.azure.com\/*",
"https:\/\/openrouter.ai\/*",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"service_worker": "background.js"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"options_page": "options.html",
"oauth2": {
"client_id": "your-google-client-id.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/userinfo.email",
"https:\/\/www.googleapis.com\/auth\/generative-language"
]
},
"commands": {
"automation-hotkey": {
"suggested_key": {
"default": "Ctrl+M"
},
"description": "Open automation command interface"
}
},
"action": {
"default_title": "Open ChromeAiAgent"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}