forked from arnoudkooi/ServiceNow-Utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
127 lines (127 loc) · 3.17 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "SN Utils - Tools for ServiceNow",
"short_name": "SN Utils",
"description": "Productivity tools for ServiceNow. (Personal work, not affiliated to ServiceNow)",
"author": "Arnoud Kooi / arnoudkooi.com",
"version": "7.1.4.4",
"manifest_version": 3,
"permissions": [
"activeTab",
"declarativeContent",
"storage",
"contextMenus",
"cookies"
],
"icons": {
"16": "images/icon16.png",
"24": "images/icon24.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://*.service-now.com/*"
],
"exclude_matches": [
"*://*/*?XML*",
"*://*/*&XML*",
"*://*/*?WSDL*",
"*://*/*&WSDL*"
],
"js": [
"js/purify.min.js",
"content_script_all_frames.js"
],
"all_frames": true
},
{
"matches": [
"https://*.service-now.com/*"
],
"exclude_matches": [
"*://*/*?XML*",
"*://*/*&XML*",
"*://*/*?WSDL*",
"*://*/*&WSDL*"
],
"js": [
"js/Tinycon.js",
"content_script_parent.js"
],
"all_frames": false
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+1",
"mac": "Command+1"
},
"description": "Activate Extension"
},
"pop": {
"suggested_key": {
"default": "Ctrl+2",
"mac": "Command+2"
},
"description": "Pop-In / Pop-Out"
},
"show-technical-names": {
"suggested_key": {
"default": "Ctrl+3",
"mac": "Command+3"
},
"description": "Show Technical Names"
},
"slashcommand-shortcut": {
"suggested_key": {
"default": "Ctrl+4",
"mac": "Command+4"
},
"description": "Run /shortcut slashcommand"
},
"slashcommand": {
"description": "Open slashcommand popup"
}
},
"web_accessible_resources": [
{
"resources": [
"js/purify.min.js",
"inject.js",
"inject_next.js",
"inject_parent.js",
"css/*",
"js/*"
],
"matches": [
"https://*.service-now.com/*"
]
}
],
"incognito": "split",
"content_security_policy": {
"extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline'; img-src https://*.service-now.com 'self' data:; child-src 'none'; object-src 'none'; connect-src https://*.service-now.com ws://127.0.0.1:1978/"
},
"action": {
"default_title": "SN Utils",
"default_popup": "popup.html",
"default_icon": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"show_matches": [
"https://*.service-now.com/*"
]
},
"host_permissions": [
"https://*.service-now.com/*"
]
}