-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
51 lines (42 loc) · 1013 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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"manifest_version": 2,
"name": "What You're Playing",
"description": "__MSG_app_description__",
"version": "4.8",
"version_name": "v4.8",
"default_locale": "en",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"tabs",
"notifications",
"storage",
"webNavigation",
"*://*.youtube.com/watch?*",
"*://*.nicovideo.jp/watch/*",
"*://twitcasting.tv/*",
"*://nana-music.com/*"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_title": "What You're Playing",
"default_popup": "views/settings/index.html"
},
"options_ui": {
"page": "views/settings/index.html",
"open_in_tab": false
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"homepage_url": "https://github.com/GenbuHase/WhatYouarePlaying"
}