-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
31 lines (31 loc) · 919 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"manifest_version": 2,
"name": "SpaceLLama",
"version": "1.3",
"description": "Summarize web pages using Ollama. Supports custom models, token limits, system prompts, chunking, and more. See https://github.com/tcsenpai/spacellama for more information.",
"permissions": ["activeTab", "storage", "<all_urls>", "tabs"],
"browser_action": {
"default_title": "SpaceLLama",
"default_icon": "icon.png"
},
"sidebar_action": {
"default_title": "SpaceLLama",
"default_panel": "sidebar/sidebar.html",
"default_icon": "icon.png"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_scripts/content.js"]
}
],
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"web_accessible_resources": ["sidebar/marked.min.js", "model_tokens.json"]
}