forked from Hangyeol-SSeo/NaverCafe-VideoDownloader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (48 loc) · 1.13 KB
/
Copy pathmanifest.json
File metadata and controls
48 lines (48 loc) · 1.13 KB
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
{
"name": "NaverCafe video downloader",
"version": "1.4.1",
"manifest_version": 3,
"author": "Hangyeol-SSeo <[email protected]>",
"description": "네이버 카페의 동영상들을 쉽게 다운로드 할 수 있는 서비스.",
"homepage_url": "https://github.com/Hangyeol-SSeo/NaverCafe-VideoDownloader",
"icons": {
"128": "icons/128.png",
"48": "icons/48.png",
"32": "icons/32.png",
"16": "icons/16.png"
},
"offline_enabled": false,
"action": {
"default_icon": "icons/48.png",
"default_title": "NaverCafe video downloader",
"default_popup": "src/popup.html"
},
"permissions": [
"webRequest",
"storage",
"downloads"
],
"host_permissions": [
"*://cafe.naver.com/*",
"*://apis.naver.com/*"
],
"background": {
"service_worker": "src/backend.js"
},
"content_scripts": [
{
"matches": ["*://cafe.naver.com/*"],
"js": [
"src/downloader.js",
"src/resource.js"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": ["icons/download_button.png"],
"matches": ["<all_urls>"]
}
]
}