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": "Ideaflo: The AI Memory Layer (Local Second Brain)",
"version": "2.0.1",
"description": "Your browser's AI memory. Auto-recalls notes & decisions contextually. Local-first architecture with optional cloud sync.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"permissions": [
"storage",
"sidePanel",
"scripting",
"unlimitedStorage",
"tabs",
"contextMenus",
"offscreen"
],
"host_permissions": [
"https:\/\/ideaflo.app\/*",
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*",
"https:\/\/claude.ai\/*",
"https:\/\/gemini.google.com\/*",
"https:\/\/grok.com\/*",
"https:\/\/x.ai\/*",
"https:\/\/www.perplexity.ai\/*"
],
"background": {
"service_worker": "background.js"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*",
"https:\/\/claude.ai\/*",
"https:\/\/gemini.google.com\/*",
"https:\/\/grok.com\/*",
"https:\/\/x.ai\/*",
"https:\/\/www.perplexity.ai\/*"
],
"js": [
"content.js",
"content-drop.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"recall-embedding.worker.js",
"transformers.min.js",
"mindmap.html",
"mindmap-init.js",
"d3.min.js",
"markmap-view.min.js",
"markmap-lib.min.js"
],
"matches": [
"<all_urls>"
]
}
]
}