-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
54 lines (52 loc) · 1.36 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
{
"manifest_version": 2,
"name": "I2 Dashboard Tools",
"description": "This extension shows an Ace editor in all TEXTAREA fields with json",
"version": "4.5",
"permissions": [
"*://i2cspmaster1/*",
"*://i2master1/*",
"*://dmatool.lsjet.com/*",
"*://placements.prod.showserver.us/*",
"*://*.mycmdb.net/*"
],
"content_scripts": [
{
"matches": [
"*://*/*",
"*://i2cspmaster1/i2/dashboard/*",
"*://i2master1/i2/dashboard/*",
"*://dmatool.lsjet.com/i2/dashboard/*",
"*://placements.prod.showserver.us/i2/dashboard/*",
"*://*.mycmdb.net/i2/dashboard/*"
],
"css":[
"jquery-ui/jquery-ui.css",
"jsondiffpatch/formatters-styles/html.css",
"bootstrap-glyphicons/glyphicons-free.css"
],
"js": [
"jquery-ui/external/jquery/jquery.js",
"jquery-ui/jquery-ui.js",
"jquery-ui-content.hack.js",
"patch-worker.js",
"vkbeautify.js",
"ace/ace.js",
"ace/mode/mode-json.js",
"ace/mode/mode-html.js",
"ace/theme-github.js",
"jsondiffpatch/build/jsondiffpatch.js",
"jsondiffpatch/build/jsondiffpatch-formatters.js",
"jsondiffpatch/external/diff_match_patch_uncompressed.js",
"plugin.js"
]
}
],
"web_accessible_resources": [
"jsondiffpatch/build/jsondiffpatch.js",
"ace/mode/worker-json.js",
"ace/mode/worker-html.js",
"jquery-ui/images/*",
"bootstrap-glyphicons/*"
]
}