-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
70 lines (64 loc) · 2.06 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
{
"manifest_version": 3,
"name": "InstantView for YouTube™",
"short_name": "InstantView",
"version": "4.7.0",
"default_locale": "en",
"description": "__MSG_extDesc__",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAve/BD/fMx2rrKK1I3DNEvDKXZ7XV2rinGukIzHB4/RJeWjWUGkOoNa3E8dM0U5Rq2rKa2cYu1hSWRIwixKf/dLqDLYQ5St++OCTIk5TNPIYZEyqIMfPyOHLubZp/01Sp8jQ9mXpNqmVmwFyuTCy22DNlEA8Afg9nnSYWRS3XCyKraQpjNhB6LjMKmwkOVF+Yx3tSt00O3XdFHtNDbg8fMMUdl9KRHWm17bkMcAgulHcj2O8Yj1Nxp1HJ/nb7r8L0GYoW0sC93QAAFy6LbfIJE+E4i1LInpqrwnkCFysjUYCHmANfqNaQ6HS5M+jMgCSfGenACTEXgjkZc1SLEYg0GQIDAQAB",
"oauth2": {
"client_id": "158705016768-ks78eptpg2blcdltoihe0mger4ptalgf.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/youtube.force-ssl"
]
},
"permissions": [
"storage"
],
"optional_permissions": [
"identity"
],
"host_permissions": [
"https://www.googleapis.com/youtube/v3/videos"
],
"icons": {
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"web_accessible_resources": [{
"resources": ["images/*.png"],
"matches": ["https://www.youtube.com/*"],
"extension_ids": ["pababfeapfpjaghmlfipkcoioeflpbio"]
}],
"action": {
"default_title": "InstantView",
"default_popup": "src/options/dist/index.html"
},
"content_scripts": [{
"matches": ["https://www.youtube.com/*"],
"js": [
"libs/youtube_iframe_api.js",
"src/iv.js",
"src/modal/dist/js/bundle.js"
],
"all_frames": false
}],
"background": {
"service_worker": "src/background.js"
},
"commands": {
"instantview-video-play-pause": {
"description": "Play/Pause Video"
},
"instantview-video-next": {
"description": "Next Video"
},
"instantview-video-previous": {
"description": "Previous Video"
},
"instantview-video-stop": {
"description": "Stop Video"
}
}
}