-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
executable file
·74 lines (74 loc) · 2.44 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
71
72
73
74
{
"name": "Improved NAVER video plugin",
"description": "네이버 카페 / 블로그 동영상을 위한 추가 기능 플러그인",
"version": "2.3.2",
"manifest_version": 3,
"background": {
"service_worker": "js/background.js"
},
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/images/icon_16.png",
"32": "/images/icon_32.png",
"64": "/images/icon_64.png",
"128": "/images/icon_128.png",
"512": "/images/icon_512.png"
}
},
"icons": {
"16": "/images/icon_16.png",
"32": "/images/icon_32.png",
"64": "/images/icon_64.png",
"128": "/images/icon_128.png",
"512": "/images/icon_512.png"
},
"content_scripts": [
{
"matches": [
"https://cafe.naver.com/*",
"https://blog.naver.com/*"
],
"all_frames": true,
"css": ["css/content-style.css"]
},
{
"matches": [
"https://cafe.naver.com/*",
"https://blog.naver.com/*"
],
"js": [
"js/common/class-variables.js",
"js/common/util.js",
"js/video-player/video-player.js",
"js/video-player/prism-player.js",
"js/video-player-finder/video-player-finder.js",
"js/video-player-finder/cafe-video-player-finder.js",
"js/video-player-finder/blog-video-player-finder.js",
"js/decorator/decorator.js",
"js/decorator/quality-display-decorator.js",
"js/decorator/select-max-quality-decorator.js",
"js/decorator/playback-rate-display-decorator.js",
"js/decorator/divide-playback-rate-decorator.js",
"js/decorator/playback-rate-shortcut-decorator.js",
"js/decorator/auto-play-first-video-decorator.js",
"js/decorator/auto-pause-last-video-decorator.js",
"js/decorator/fix-mouse-action-decorator.js",
"js/decorator/hide-setting-button-decorator.js",
"js/decorator/easy-open-volume-slider-decorator.js",
"js/decorator/extend-volume-slider-decorator.js",
"js/decorator/remove-volume-slider-animation-decorator.js",
"js/decorator/precise-volume-shortcut-decorator.js",
"js/decorator/extend-max-volume-decorator.js",
"js/decorator/set-default-volume-decorator.js",
"js/decorator/left-right-shortcut-decorator.js",
"js/decorator/preserve-volume-after-replay-decorator.js",
"js/main.js"
]
}
],
"options_page": "popup.html"
}