-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest-firefox.json
More file actions
62 lines (61 loc) · 1.2 KB
/
Copy pathmanifest-firefox.json
File metadata and controls
62 lines (61 loc) · 1.2 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
59
60
61
62
{
"manifest_version": 3,
"name": "Totally Unhelpful Assistant Daemons - TOADs",
"version": "0.0.1",
"description": "Displays a character with an Ollama/Gemini-generated quip about the current page.",
"permissions": [
"tabs",
"scripting",
"storage"
],
"host_permissions": [
"http://localhost/",
"https://generativelanguage.googleapis.com/"
],
"background": {
"scripts": [
"background.js"
],
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"style.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"images/character.png",
"characters/*/*.png",
"characters/*/*.json"
],
"matches": [
"<all_urls>"
]
}
],
"options_page": "options.html",
"action": {
"default_icon": {
"16": "images/character.png",
"48": "images/character.png",
"128": "images/character.png"
},
"default_title": "Set up your TOADs!"
},
"browser_specific_settings": {
"gecko": {
"id": "toads@yankooliveira.com"
}
}
}