-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
41 lines (41 loc) · 848 Bytes
/
manifest.json
File metadata and controls
41 lines (41 loc) · 848 Bytes
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
{
"name": "spotify-ext",
"version": "1.0.0",
"description": "",
"permissions": [
"tabs",
"activeTab",
"clipboardRead",
"https://open.spotify.com/"
],
"icons": {
"16": "images/yt_16.png",
"32": "images/yt_32.png",
"48": "images/yt_48.png",
"128": "images/yt_128.png"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://open.spotify.com/*"],
"js": ["contentScript.js"],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"main.js"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/yt_16.png",
"32": "images/yt_32.png",
"48": "images/yt_48.png",
"128": "images/yt_128.png"
}
},
"manifest_version": 2
}