-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (36 loc) · 905 Bytes
/
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
{
"manifest_version": 3,
"name": "Delfi",
"description": "Save Linkedin Profiles with Short Notes!",
"version": "1.0",
"action": {
"default_icon": "images/delfi-logo.png",
"default_popup": "popup/popup.html"
},
"icons": {
"16": "images/delfi-logo.png",
"32": "images/delfi-logo.png",
"48": "images/delfi-logo.png",
"128": "images/delfi-logo.png"
},
"host_permissions": [
"https://developer.chrome.com/*",
"http://*/*",
"https://*/*",
"https://www.linkedin.com/*"
],
"permissions": [
"storage",
"tabs",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"matches": ["<all_urls>"],
"resources": ["images/delfi-logo.png"]
}
]
}