-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
35 lines (35 loc) · 943 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
{
"manifest_version": 3,
"name": "Lyrics for Spotify Web",
"short_name": "Lyrics4Spotify",
"description": "A browser extension that displays lyrics in Spotify web UI",
"version": "0.8",
"version_name": "0.8",
"icons": {
"16": "assets/icon16.png",
"32": "assets/icon32.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"permissions": [
"storage"
],
"action": {
"default_title": "Lyrics4Spotify",
"default_popup": "src/config.html"
},
"content_scripts": [
{
"matches": [
"https://open.spotify.com/*"
],
"js": [
"src/defaultConfigs.js",
"src/utils.js",
"src/LyricsManager.js",
"src/main.js"
]
}
],
"homepage_url": "https://github.com/abhishekabhi789/LyricsForSpotifyWeb"
}