-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
54 lines (53 loc) · 3.21 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"author": "CONvergence IT, Matt Resong, Colleen Baltutis, Sean Berry, Mark Sauntry",
"version": "2024.1",
"default_locale": "en",
"icons": {
"48": "assets/wink-with-note-black-48.png",
"16": "assets/wink-black-16.png"
},
"content_scripts": [
{ "matches": ["https://ce.z2systems.com/np/admin/event/attendeeEdit.do*"], "js": ["jquery-1.12.4.min.js", "js/attendeeContact.js"], "run_at": "document_end" },
{ "matches": ["https://ce.z2systems.com/np/admin/event/contactSelect.do*"], "js": ["jquery-1.12.4.min.js", "js/attendeeContact.js"], "run_at": "document_end" },
{ "matches": ["https://ce.z2systems.com/np/admin/event/eventRegDetails.do*"], "js": ["jquery-1.12.4.min.js", "js/registrations.js"], "run_at": "document_end" },
{ "matches": ["https://ce.z2systems.com/np/admin/event/registrationSearch.do?query.eventId=202*"], "js": ["jquery-1.12.4.min.js", "js/regSearch.js"], "run_at": "document_end" },
{ "matches": ["https://trial.z2systems.com/np/admin/event/attendeeEdit.do*"], "js": ["jquery-1.12.4.min.js", "js/attendeeContact.js"], "run_at": "document_end" },
{ "matches": ["https://trial.z2systems.com/np/admin/event/contactSelect.do*"], "js": ["jquery-1.12.4.min.js", "js/attendeeContact.js"], "run_at": "document_end" },
{ "matches": ["https://trial.z2systems.com/np/admin/event/eventRegDetails.do*"], "js": ["jquery-1.12.4.min.js", "js/registrations.js"], "run_at": "document_end" },
{ "matches": ["https://trial.z2systems.com/np/admin/event/registrationSearch.do?query.eventId=202*"], "js": ["jquery-1.12.4.min.js", "js/regSearch.js"], "run_at": "document_end" },
{ "matches": ["https://ce.app.neoncrm.com/np/admin/event/attendeeEdit.do*"], "js": ["jquery-1.12.4.min.js", "js/attendeeContact.js"], "run_at": "document_end" },
{ "matches": ["https://ce.app.neoncrm.com/np/admin/event/contactSelect.do*"], "js": ["jquery-1.12.4.min.js", "js/attendeeContact.js"], "run_at": "document_end" },
{ "matches": ["https://ce.app.neoncrm.com/np/admin/event/eventRegDetails.do*"], "js": ["jquery-1.12.4.min.js", "js/registrations.js"], "run_at": "document_end" },
{ "matches": ["https://ce.app.neoncrm.com/np/admin/event/registrationSearch.do?query.eventId=202*"], "js": ["jquery-1.12.4.min.js", "js/regSearch.js"], "run_at": "document_end" }
],
"permissions": [
"storage",
"tabs",
"webNavigation"
],
"host_permissions": [
"https://ce.app.neoncrm.com/np/admin/event/*",
"https://ce.z2systems.com/np/admin/event/*",
"https://trial.z2systems.com/np/admin/event/*"
],
"action": {
"default_icon": {
"19": "assets/wink-black-19.png"
},
"default_title": "Print Badge",
"default_popup": "popup.html"
},
"background": {
"service_worker": "js/background.js"
},
"omnibox" : { "keyword" : "con" },
"options_ui": {
"page": "extension_options_page.html",
"open_in_tab": false
},
"options_page": "extension_options_page.html"
}