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": "Abra Cadabra - AI Browser Control Agent",
"version": "3.2",
"description": "AI-powered Browser control agent for automating web interactions on chrome",
"permissions": [
"storage",
"activeTab",
"scripting",
"clipboardRead",
"webNavigation",
"tabs",
"offscreen"
],
"optional_permissions": [],
"optional_host_permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"background": {
"service_worker": "background\/main.js",
"type": "module"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"favorites-modal.css",
"favorites-modal.html",
"all-rules.html",
"generate-content.html",
"overlay.js",
"mouse_control_executor.js",
"modules\/*.js",
"images\/*",
"address-book.html",
"address-book.css"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"offscreen_speech.html",
"wasm\/*",
"models\/*"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
}