-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 921 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "HandShake H1B Checker",
"description": "Check if a company sponsored H1B recently on HandShake!",
"short_name": "HH1BC",
"version": "0.1",
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "images/logo.png",
"default_popup": "popup.html",
"default_title": "The Extension automatically works when you are in Linkedin or indeed jobs search page."
},
"content_scripts": [
{
"matches": [
"*://*.joinhandshake.com/*"
],
"run_at": "document_idle",
"css": [
"content.css"
],
"js": [
"content.js"
]
}
],
"permissions": [],
"icons": {
"16": "images/logo_16x16.png",
"48": "images/logo_48x48.png",
"96": "images/logo_96x96.png",
"128": "images/logo_128x128.png"
}
}