-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 977 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
35
36
37
{
"manifest_version": 3,
"name": "Refer Please",
"description": "Every employee is a recruiter. Sharing only dev jobs.",
"action": {
"default_icon": "./assets/icons/icon16.png",
"default_title": "Refer Please",
"default_popup": "./html/popup.html"
},
"homepage_url": "https://referplease.com",
"icons": {
"16": "./assets/icons/icon16.png",
"48": "./assets/icons/icon48.png",
"128": "./assets/icons/icon128.png"
},
"version": "2.15",
"content_scripts": [
{
"matches": [
"https://www.linkedin.com/*",
"https://www.linkedin.com/**",
"https://www.referplease.com/*",
"https://www.referplease.com/**"
],
"js": [
"./js/linkedin_content.js",
"./js/referplease_content.js",
"./js/content.js"
]
}
],
"host_permissions": ["https://www.referplease.com/*"],
"permissions": ["webRequest"],
"background": {
"service_worker": "background.js"
}
}