46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Ollama Sidebar",
|
|
"version": "1.0.0",
|
|
"description": "Chat with local Ollama models from a browser sidebar",
|
|
"permissions": ["storage", "sidePanel", "tabs", "activeTab", "scripting"],
|
|
"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", "marked.min.css"],
|
|
"matches": ["<all_urls>"]
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|