-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmanifest.firefox.json
63 lines (63 loc) · 1.37 KB
/
manifest.firefox.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
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
63
{
"manifest_version": 2,
"name": "Chat Extension",
"version": "0.0.4",
"description": "A chat extension using Hugging Face models",
"permissions": [
"storage",
"activeTab",
"tabs",
"<all_urls>",
"scripting"
],
"icons": {
"16": "assets/icons/icon16.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
},
"browser_action": {
"default_icon": {
"16": "assets/icons/icon16.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
}
},
"sidebar_action": {
"default_title": "AI Assistant",
"default_panel": "popup.html",
"default_icon": {
"16": "assets/icons/icon16.png",
"48": "assets/icons/icon48.png"
},
"open_at_install": true
},
"commands": {
"_execute_sidebar_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
},
"description": "Toggle sidebar"
}
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["browser-polyfill.js", "content.js"]
}],
"background": {
"scripts": ["browser-polyfill.js", "background.js"]
},
"options_ui": {
"page": "popup.html",
"open_in_tab": true
},
"web_accessible_resources": [
"assets/*",
"popup.html"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "57.0"
}
}
}