-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
66 lines (66 loc) · 1.5 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
{
"manifest_version": 3,
"name": "CuratelyAi",
"version": "1.0",
"content_scripts": [
{
"matches": [
"https://www.linkedin.com/*"
],
"js": [
"jquery.min.js",
"CuratelyInjectedScript.js",
"intro.js",
"searchList.js",
"lib/swal.js",
"createTask.js"
],
"css": [
"introjs.css",
"popup.css",
"createTask.css"
],
"run_at": "document_end",
"permissions": [
"file://*/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"searchList.html",
"alert.png",
"black_logo.png",
"fonts/SegoeUI.woff2"
],
"matches": [
"https://www.linkedin.com/*"
]
}
],
"background": {
"service_worker": "service-worker.js"
},
"icons": {
"16": "app-logo.png",
"32": "app-logo.png",
"48": "app-logo.png",
"128": "app-logo.png"
},
"permissions": [
"tabs",
"downloads",
"webRequest",
"scripting",
"cookies",
"downloads",
"downloads.open",
"storage",
"unlimitedStorage"
],
"host_permissions": [
"file://*/*",
"https://www.linkedin.com/*"
]
}