-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
46 lines (46 loc) · 1.1 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
{
"name": "HR helper",
"short_name": "HR helper - Linkedin™ private notes",
"version": "0.1.17",
"description": "Linkedin private notes",
"permissions": [
"https://www.linkedin.com/*",
"storage",
"unlimitedStorage",
"declarativeContent"
],
"content_scripts": [
{
"js": [ "messages/messages.js", "content/content.js" ],
"css": [ "content/content.css" ],
"matches": [ "https://www.linkedin.com/*" ],
"all_frames": true,
"run_at": "document_end"
}
],
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"background": {
"page": "background/background.html"
},
"page_action": {
"default_popup": "popup/popup.html",
"default_title": "HR-helper - Click to open",
"default_icon": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo48.png",
"128": "images/logo128.png"
}
},
"icons": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo48.png",
"128": "images/logo128.png"
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"manifest_version": 2
}