-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
60 lines (59 loc) · 1.61 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
{
"manifest_version": 3,
"name": "LLFetcher 3.0+",
"version": "3.0.1",
"description":"Download LinkedIn Learning videos or media files, subtitle, playlist and course assets easily !",
"permissions":[
"scripting","storage",
"webNavigation","tabs","cookies",
"downloads", "nativeMessaging"
],
"host_permissions":[
"https://www.linkedin.com/learning/*",
"http://localhost:5000/*",
"http://127.0.0.1:5000/*"
],
"background":{
"service_worker" : "src/background-scripts/background.js"
},
"content_scripts": [
{
"js": ["src/content-scripts/main.js"],
"matches": ["https://www.linkedin.com/learning/*","http://localhost:5000/*",
"http://127.0.0.1:5000/*"]
}
],
"options_ui": {
"page": ["src/option/index.html","src/content-scripts/inject/index.html"],
"open_in_tab": true
},
"icons": {
"16": "logo/icon-16.png",
"19": "logo/icon-19.png",
"32": "logo/icon-32.png",
"38": "logo/icon-38.png",
"48": "logo/icon-48.png",
"128": "logo/icon-128.png"
},
"action": {
"default_popup": "src/popup/index.html",
"default_icon": {
"16": "logo/icon-16.png",
"19": "logo/icon-19.png",
"32": "logo/icon-32.png",
"38": "logo/icon-38.png",
"48": "logo/icon-48.png",
"128": "logo/icon-128.png"
}
},
"web_accessible_resources": [
{
"matches": [
"https://www.linkedin.com/*"
],
"resources": [
],
"use_dynamic_url": true
}
]
}