-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.firefox.json
41 lines (41 loc) · 1.1 KB
/
manifest.firefox.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
{
"manifest_version": 2,
"name": "Workforce Mate",
"version": "1.2.4",
"description": "Fill out your job search efforts on the Workforce Australia website with ease",
"permissions": [
"https://*.workforceaustralia.gov.au/*",
"https://*.seek.com.au/*",
"https://*.jora.com/*",
"https://*.indeed.com/*",
"https://*.linkedin.com/*",
"https://*.careerone.com.au/*",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https://*.workforceaustralia.gov.au/*",
"https://*.seek.com.au/*",
"https://*.jora.com/*",
"https://*.indeed.com/*",
"https://*.linkedin.com/*",
"https://*.careerone.com.au/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}