-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
50 lines (50 loc) · 1.08 KB
/
Copy pathmanifest.json
File metadata and controls
50 lines (50 loc) · 1.08 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"version": "0.1.0",
"action": {
"default_title": "__MSG_extensionActionTitle__"
},
"background": {
"scripts": ["background.js"],
"service_worker": "background.js",
"type": "module"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ollama_request_headers",
"enabled": true,
"path": "rules/ollama-request-headers.json"
}
]
},
"side_panel": {
"default_path": "sidepanel/index.html"
},
"sidebar_action": {
"default_panel": "sidepanel/index.html",
"default_title": "__MSG_extensionActionTitle__"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"permissions": [
"activeTab",
"declarativeNetRequestWithHostAccess",
"scripting",
"sidePanel",
"storage",
"tabs"
],
"host_permissions": [
"http://localhost:11434/*",
"http://127.0.0.1:11434/*"
]
}