-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
48 lines (48 loc) · 1.08 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"manifest_version": 3,
"name": "Song Lyrics",
"description": "Display current song lyrics for music platforms, such as Spotify, Apple Music, Deezer, YouTube, etc.",
"version": "5.1",
"action": {
"default_title": "View current song lyrics on this site",
"default_popup": "pages/popup.html"
},
"icons": {
"16": "images/icons/16.png",
"32": "images/icons/32.png",
"48": "images/icons/48.png",
"64": "images/icons/64.png",
"128": "images/icons/128.png",
"256": "images/icons/256.png",
"512": "images/icons/512.png"
},
"background": {
"service_worker": "scripts/compiled/service-worker.js",
"type": "module"
},
"options_ui": {
"page": "pages/options.html",
"open_in_tab": false
},
"permissions": [
"activeTab",
"contextMenus",
"scripting",
"storage"
],
"host_permissions": [
"https://*.genius.com/*",
"https://*.rapgenius.com/*",
"https://s3.amazonaws.com/rapgenius/*"
],
"web_accessible_resources": [
{
"resources": [
"pages/popup.html",
"styles/popup.css",
"scripts/compiled/popup.js"
],
"matches": ["<all_urls>"]
}
]
}