-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
47 lines (47 loc) · 901 Bytes
/
manifest.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
{
"manifest_version": 3,
"name": "MnemoMingle",
"description": "Make new vocabulary more meaningful",
"version": "1.0",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"128": "icon128.png"
},
"permissions": [
"activeTab",
"tabs",
"scripting",
"storage"
],
"commands": {
"mingle": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "Command+Shift+F"
},
"description": "Generate information for the highlighted text"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scripts/content.js"
]
}
],
"host_permissions": [
"https://api.openai.com/"
],
"action": {
"default_popup": "popup/popup.html",
"default_icon": "images/icon.png"
},
"background": {
"service_worker": "service-worker.js",
"type": "module"
}
}