-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
54 lines (54 loc) · 1.14 KB
/
manifest.json
File metadata and controls
54 lines (54 loc) · 1.14 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
51
52
53
54
{
"manifest_version": 2,
"name": "AutoSort+",
"version": "1.2.3.3",
"description": "Automatically sort and label your emails with custom rules using AI",
"author": "Nigel Hagen",
"applications": {
"gecko": {
"id": "autosortplus@nigelhagen.com",
"strict_min_version": "78.0"
}
},
"permissions": [
"messagesRead",
"messagesModify",
"accountsRead",
"storage",
"menus",
"tabs",
"messagesMove",
"messagesRead",
"activeTab",
"https://generativelanguage.googleapis.com/*",
"http://localhost/*",
"http://127.0.0.1/*"
],
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["content.js"]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"browser_action": {
"default_icon": "icons/icon-48.png",
"default_title": "AutoSort+ Settings"
},
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"web_accessible_resources": [
"api_ollama/index.html",
"api_ollama/ollama-popup.js",
"js/ollama.js",
"js/workers/ollama-worker.js"
]
}