-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
90 lines (90 loc) · 2.83 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "Exfm",
"manifest_version": 2,
"version": "4.1.2",
"description": "Still the best way to find and share new music",
"icons":
{
"128": "images/icon128.png"
},
"background":
{
"persistent": false,
"scripts": [
"js/vars/constants.js",
"js/vars/keys.js",
"js/libs/jquery-2.0.3.js",
"js/analytics/ga.js",
"js/background/listeners.js",
"js/background/alarms.js",
"js/background/tabs.js",
"js/background/song.js",
"js/services/tumblr.js",
"js/services/soundcloud.js",
"js/services/bandcamp.js",
"js/services/livemusicarchive.js",
"js/services/mp3links.js",
"js/services/lastfm.js",
"js/services/rdio.js",
"js/services/spotify.js",
"js/services/tomahawk.js",
"js/services/rhapsody.js",
"js/oauth/sha1.js",
"js/oauth/md5.js",
"js/oauth/jquery.oauth.js",
"js/oauth/oauth.js",
"js/libs/id3.js"
]
},
"permissions":
[
"tabs",
"notifications",
"storage",
"unlimitedStorage",
"alarms",
"http://api.tumblr.com/*",
"http://*/",
"https://soundcloud.com/*",
"https://archive.org/*",
"https://www.rdio.com/*",
"https://api.rhapsody.com/*"
],
"page_action":
{
"default_title": "Listen to page with Exfm",
"default_icon":
{
"19": "images/chrome-icon-19px-inactive.png",
"38": "images/chrome-icon-38px-inactive.png"
}
},
"homepage_url": "http://ex.fm",
"content_scripts": [
{
"matches": [
"http://*/*",
"https://soundcloud.com/*",
"https://archive.org/*"
],
"js": ["js/content-script/scan.js"],
"run_at": "document_end"
}
],
"options_page": "html/options.html",
"web_accessible_resources": [
"html/player.html",
"js/libs/jquery-2.0.3.js",
"js/player/main.js",
"js/player/playqueue.js",
"js/player/progress-bar.js",
"js/player/listeners.js",
"js/analytics/ga.js",
"images/albumart-default-1.jpg",
"images/albumart-default-2.jpg",
"images/albumart-default-3.jpg",
"images/albumart-default-4.jpg",
"images/albumart-default-5.jpg"
],
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}