-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 976 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
{
"manifest_version": 3,
"name": "Youtube to Spotify",
"description": "Quickly play YouTube songs on Spotify",
"version": "0.1",
"action": {
"default_popup": "popup.html",
"default_icon": "icons/spotify.png"
},
"permissions": ["scripting", "activeTab", "storage", "contextMenus", "tabs"],
"host_permissions": [
"*://*.youtube.com/*"
],
"background": {
"service_worker": "src/contextMenu.js"
},
"content_scripts": [
{
"js": ["src/shared.js", "src/callback.js"],
"matches": [
"https://www.youtube.com/yt2spotify-callback"
]
},
{
"js": ["src/shared.js", "src/buttons.js"],
"matches": [
"https://www.youtube.com/watch*"
]
}
],
"icons": {
"16": "icons/spotify-16.png",
"48": "icons/spotify-48.png",
"128": "icons/spotify-128.png"
}
}