-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (45 loc) · 1.09 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
{
"manifest_version": 3,
"name": "Linkedin Connect Robot",
"version": "0.2.0",
"description": "Automatically send connection requests or follow people on LinkedIn.",
"background": {
"service_worker": "./background.js"
},
"icons": {
"16": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
},
"host_permissions": ["https://www.linkedin.com/*"],
"permissions": ["activeTab", "tabs", "storage", "scripting"],
"content_scripts": [
{
"matches": ["https://www.linkedin.com/*"],
"js": ["./content_script.js"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": ["./images/*"],
"matches": ["https://www.linkedin.com/*"]
},
{
"resources": ["./popup.html"],
"matches": ["https://www.linkedin.com/*"]
},
{
"resources": ["./popup.js"],
"matches": ["https://www.linkedin.com/*"]
}
],
"action": {
"default_popup": "./popup.html",
"default_icon": {
"16": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
}
}
}