-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
50 lines (50 loc) · 1.76 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
{
"version": "0.0.2",
"name": "world-of-code",
"manifest_version": 2,
"description": "turn your youtube channel into a learning platform",
"browser_action": {
"default_popup": "/chrome/views/popup.html",
"default_title": "Login/Signup"
},
"icons": {
"16": "chrome/assets/img/icon-16.png",
"48": "chrome/assets/img/icon-48.png",
"128": "chrome/assets/img/icon-128.png"
},
"web_accessible_resources": [
"inject.html"
],
"oauth2":{
"client_id": "123992022913-jhtjafetahdfojdjgh21q2nlbogleja5.apps.googleusercontent.com",
"scopes": ["https://www.googleapis.com/auth/youtube"]
},
"content_scripts": [
{
"css": [
"chrome/style/index.scss",
"public/style/rc-drawer.css",
"public/style/animate.css",
"public/style/drawer.css",
"public/style/drawer-contents.css",
"public/style/bulma.css"
],
"js": [
"chrome/js/app.bundle.js",
"chrome/js/popup.bundle.js"
],
"matches": [
"http://*.youtube.com/*", "https://*.youtube.com/*",
"http://*.medium.com/*", "https://*.medium.com/*",
"http://*.channel9.msdn.com/*", "https://*.channel9.msdn.com/*",
"http://*.ch9.ms/*", "https://*.ch9.ms/*",
"http://*.jsforcats.com/*", "https://*.jsforcats.com/*",
"http://*.hackernoon.com/*", "https://*.hackernoon.com/*",
"http://*.stackexchange.com/*", "https://*.stackexchange.com/*",
"http://*.stackoverflow.com/*", "https://*.stackoverflow.com/*"
]
}
],
"permissions": [ "contextMenus", "management", "tabs", "storage", "identity" ],
"content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval'; connect-src * ; style-src * 'unsafe-inline' 'self' blob:; img-src 'self' data:;"
}