-
Notifications
You must be signed in to change notification settings - Fork 16
/
manifest.json
46 lines (46 loc) · 1.15 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
{
"name": "Turntable Plus",
"version": "0.3.18",
"manifest_version": 2,
"description": "Add features to turntable.fm that you thought were missing!",
"icons": {
"16": "images/ttpIcon16.png",
"48": "images/ttpIcon48.png",
"128": "images/ttpIcon128.png"
},
"browser_action": {
"default_icon": "images/ttpIcon.png",
"default_title": "Turntable Plus",
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"storage",
"unlimitedStorage",
"idle",
"notifications",
"*://turntable.fm/",
"*://*.turntable.fm/"
],
"web_accessible_resources": [
"scripts/onPage.js",
"styles/ttp.css",
"images/bannerBg.png",
"images/bannerListeners.png",
"images/bannerLogo.png",
"images/fanned.png",
"images/downarrow.png",
"images/heart.png",
"images/scriptAdd.png",
"images/scriptRemove.png",
"images/uparrow.png"
],
"background": {
"scripts": [
"scripts/background.js"
]
},
"options_page": "settings.html",
"homepage_url": "http://turntableplus.fm",
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}