-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
52 lines (52 loc) · 1.03 KB
/
Copy pathmanifest.json
File metadata and controls
52 lines (52 loc) · 1.03 KB
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
{
"name": "LinkedIn Auto-applyer",
"version": "0.1.0",
"description": "Auto applying to LinkedIn Jobs",
"permissions": [
"storage",
"tabs",
"scripting",
"activeTab"
],
"host_permissions": [
"https://*.linkedin.com/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://*.linkedin.com/*"
],
"js": [
"contentScript.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets/bookmark.png",
"assets/play.png",
"assets/delete.png",
"assets/save.png",
"src/controllers/JobsController/index.js",
"helpers/utils.js"
],
"matches": [
"https://*.linkedin.com/*"
]
}
],
"action": {
"default_icon": {
"16": "assets/ext-icon.png",
"24": "assets/ext-icon.png",
"32": "assets/ext-icon.png"
},
"default_title": "Auto-applyer",
"default_popup": "popup.html"
},
"manifest_version": 3
}