forked from arnoudkooi/SN-Utils
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
89 lines (89 loc) · 2.26 KB
/
manifest.json
File metadata and controls
89 lines (89 loc) · 2.26 KB
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
{
"name": "ServiceNow Utils",
"short_name": "ServiceNow Utils",
"description": "ServiceNow Productivity tools. (Personal work, not affiliated to ServiceNow)",
"author": "Arnoud Kooi / arnoudkooi.com",
"version": "2.7.0",
"permissions": [
"activeTab",
"https://*.service-now.com/*",
"declarativeContent",
"storage",
"nativeMessaging",
"contextMenus",
"management",
"cookies"
],
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"background": {
"scripts": [
"js/jquery.js",
"js/snrest.js",
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https://*.service-now.com/*"
],
"js": [
"content_script_parent.js"
]
},
{
"matches": [
"https://*.service-now.com/*"
],
"js": [
"js/jquery.js",
"content_script_all_frames.js"
],
"all_frames": true
}
],
"commands": {
"_execute_page_action": {
"suggested_key": {
"default": "Alt+1",
"mac": "Command+1"
}
},
"pop": {
"suggested_key": {
"default": "Alt+2",
"mac": "Command+2"
},
"description": "Pop-In / Pop-Out"
},
"show-technical-names": {
"suggested_key": {
"default": "Alt+3",
"mac": "Command+3"
},
"description": "Show Technical Names"
},
"show-select-field-values": {
"suggested_key": {
"default": "Alt+4",
"mac": "Command+4"
},
"description": "Show Select-field values"
}
},
"page_action": {
"default_title": "ServiceNow Utils",
"default_popup": "popup.html"
},
"web_accessible_resources": [
"inject.js",
"js/typeahead.bundle.min.js"
],
"manifest_version": 2
}