-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
58 lines (51 loc) · 1.26 KB
/
Copy pathmanifest.json
File metadata and controls
58 lines (51 loc) · 1.26 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
55
56
57
58
{
"manifest_version": 3,
"name": "AI Tagger for Thunderbird",
"version": "0.1.20",
"description": "Classify and tag email with a local Ollama LLM. Natural-language rules, automatic new-mail processing, optional move/archive actions. Private — no cloud required.",
"author": "Mecallie",
"homepage_url": "https://github.com/Mecallie/thunderbird-ai-tagger",
"browser_specific_settings": {
"gecko": {
"id": "ai-tagger@thunderbird.example.com",
"strict_min_version": "128.0",
"data_collection_permissions": {
"required": ["none"]
}
}
},
"permissions": [
"messagesRead",
"accountsRead",
"messagesUpdate",
"messagesMove",
"messagesDelete",
"storage",
"notifications",
"messagesTags",
"messagesTagsList",
"menus"
],
"host_permissions": [
"http://localhost/*",
"http://127.0.0.1/*"
],
"background": {
"scripts": ["background.js"],
"type": "module"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"action": {
"default_title": "AI Tagger",
"default_icon": "icons/icon-32.png"
}
}