-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
56 lines (56 loc) · 1.24 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
49
50
51
52
53
54
55
56
{
"manifest_version": 2,
"name": "github-now",
"description": "Update your github profile with the song you are listening",
"version": "1.0.7",
"icons": {
"24": "assets/24.png",
"32": "assets/32.png",
"64": "assets/64.png",
"512": "assets/512.png"
},
"author": "20chan",
"homepage_url": "https://github.com/20chan/github-now",
"permissions": [
"tabs",
"storage",
"alarms",
"https://github.com/*",
"https://soundcloud.com/*",
"https://music.youtube.com/*",
"https://open.spotify.com/*",
"https://www.youtube.com/*",
"https://www.jamendo.com/*"
],
"content_scripts": [
{
"js": [
"contentscript.js"
],
"css": [
"contentscript.css"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": {
"24": "assets/24.png",
"32": "assets/32.png",
"64": "assets/64.png"
}
},
"options_page": "options/index.html",
"web_accessible_resources": [
"assets/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-TnCYueAlk+QTrCfkOrSf1dorQ/kCYZKVKdogZ7jRpUs='; object-src 'self'"
}