Files
ollama-sidebar/manifest.json
T
2026-05-25 06:19:59 -04:00

47 lines
1.2 KiB
JSON

{
"manifest_version": 3,
"name": "Ollama Sidebar",
"version": "1.0.0",
"description": "Chat with local Ollama models from a browser sidebar",
"options_page": "settings.html",
"permissions": ["storage", "sidePanel", "tabs", "activeTab"],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Ollama Sidebar",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"side_panel": {
"default_path": "sidepanel.html"
},
"sidebar_action": {
"default_panel": "sidepanel.html",
"default_title": "Ollama Sidebar",
"default_icon": "icons/icon48.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": ["marked.min.js", "highlight.min.js", "hljs-github-dark.min.css", "pdf.min.js", "pdf.worker.min.js"],
"matches": ["<all_urls>"]
}
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}