-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
35 lines (34 loc) · 1.01 KB
/
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
{
"name": "Find The Word",
"description": "Chrome extension to find an English word using wildcards (?,*)",
"version": "0.6",
"permissions": [
],
"icons": {
"16": "ico/btn_word_finder.16x16.png",
"20": "ico/btn_word_finder.20x20.png",
"24": "ico/btn_word_finder.24x24.png",
"32": "ico/btn_word_finder.32x32.png",
"48": "ico/btn_word_finder.48x48.png",
"64": "ico/btn_word_finder.64x64.png",
"128": "ico/btn_word_finder.128x128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_title": "Find The Word",
"default_popup": "word-finder.html",
"default_icon": {
"16": "ico/btn_word_finder.16x16.png",
"20": "ico/btn_word_finder.20x20.png",
"24": "ico/btn_word_finder.24x24.png",
"32": "ico/btn_word_finder.32x32.png",
"48": "ico/btn_word_finder.48x48.png",
"64": "ico/btn_word_finder.64x64.png",
"128": "ico/btn_word_finder.128x128.png"
}
},
"manifest_version": 3
}