forked from ttdevelopers/Turntable-Remix
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
38 lines (38 loc) · 965 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
37
38
{
"name": "Turntable.fm Remix",
"version": "0.3.0.3",
"description": "A thing to make turntable.fm cooler, bro.",
"update_url": "https://dl.dropbox.com/s/jzd7aj69iojxi7f/update.xml",
"manifest_version": 2,
"content_scripts": [
{
"matches": ["http://turntable.fm/*"],
"exclude_globs": [
"http://turntable.fm/",
"http://turntable.fm/lobby",
"http://turntable.fm/about",
"http://turntable.fm/jobs",
"http://turntable.fm/privacy",
"http://turntable.fm/copyright",
"http://turntable.fm/terms",
"http://turntable.fm/static/*"
],
"js": ["js/inject.js"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"js/require.js",
"js/main.js",
"js/remix.js",
"js/underscore.js",
"js/backbone.js",
"css/remix.css"
],
"permissions": [
"http://turntable.fm/*",
"http://turntable.fm/",
"https://turntable.fm/",
"notifications"
]
}