forked from KnlnKS/lever-parser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
34 lines (34 loc) · 788 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
{
"manifest_version": 2,
"name": "Lever Resume Parser",
"description": "A Lever resume parser extension",
"version": "0.3",
"content_scripts": [
{
"matches": [
"https://jobs.lever.co/parse*"
],
"js": [
"js/jquery.js",
"js/index.js",
"js/injectStyles.js",
"js/injectContent.js",
"js/displayResults.js",
"js/utils.js"
]
}
],
"background": {
"scripts": [
"js/background.js"
]
},
"permissions": [
"contextMenus"
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}