-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
32 lines (32 loc) · 886 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
{
"name": "Phonetic Portal",
"description" : "Opens a portal and displays the phonetic pronunciation of the highlighted word.",
"version": "2024.0.1",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
"default_title": "Phonetic Portal",
"default_icon": {
"16": "./img/phonetic-portal-16.png",
"128": "./img/phonetic-portal-128.png"
}
},
"icons": {
"16": "./img/phonetic-portal-16.png",
"32": "./img/phonetic-portal-32.png",
"64": "./img/phonetic-portal-64.png",
"128": "./img/phonetic-portal-128.png",
"256": "./img/phonetic-portal-256.png",
"512": "./img/phonetic-portal-512.png"
},
"background": {
"service_worker": "./js/eventPage.js"
},
"permissions": ["contextMenus", "activeTab"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["./js/content.js"]
}
]
}