-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 865 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
{
"name": "CDT Helper",
"description": "Enhancements for Service Desk workflow; rich text hotkeys",
"version": "1.0.0",
"manifest_version": 3,
"permissions": ["storage"],
"action": {
"default_popup": "src/popup/popup.html"
},
"host_permissions": [
"https://services.cdt.ca.gov/*",
"https://casntest.servicenowservices.com/*"
],
"icons": {
"128": "src/assets/icons/ext_logo_128.png"
},
"web_accessible_resources": [
{
"resources": [],
"matches": [
"https://*.cdt.ca.gov/*",
"https://*.servicenowservices.com/*"
]
}
],
"content_scripts": [
{
"js": ["src/content_scripts/snowFormatter.js"],
"all_frames": true,
"world": "MAIN",
"matches": [
"https://services.cdt.ca.gov/*",
"https://casntest.servicenowservices.com/*"
]
}
]
}