-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
122 lines (111 loc) · 3.93 KB
/
Copy pathoptions.html
File metadata and controls
122 lines (111 loc) · 3.93 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="externalScripts/jquery-3.5.1.min.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<script src="parsing/FTB_converter.js"></script>
<script src="nav.js"></script>
<title>SOC ToolBox</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<!-- Custom styles for this template -->
<style type="text/css">
body {
padding-top: 5rem;
}
.starter-template {
padding: 3rem 1.5rem;
text-align: center;
}
</style>
</head>
<body>
<div id="includedContent"></div>
<center>
<button id="save">Save</button>
<button id="clear">Clear</button>
<div id="status"></div>
<div id="Downloads">
<h1>Download</h1>
<label>
Enable Download Manager:
<input type="checkbox" id="Download_Manager" checked=false />
</label>
<H2>Select Downloads subfolders:</H2>
<div id="Download_Options">
<div>
Email Downloads Folder Name (message/rfc822):
<input type="text" id="email_dir" value="">
</div>
<div>
PDF Downloads Folder Name:
<input type="text" id="PDF_dir" value="">
</div>
<div>
CSV Downloads Folder Name (text/csv):
<input type="text" id="csv_dir" value="">
</div>
<div>
Zip Downloads Folder Name (.zip):
<input type="text" id="zip_dir" value="">
</div>
<div>
JSON Downloads Folder Name (.json):
<input type="text" id="json_dir" value="">
</div>
</div>
</div>
<div id="TicketDesks">
<h1>Ticket Desks</h1>
<h2>Jira</h2>
<label>
Enable Jira:
<input type="checkbox" id="jira_manager" checked=false />
</label>
<h3>Set Jira data:</h3>
<div id="jira_Options">
<div>
Jira Workspace URL (e.g. <i>example.atlassian.net</i>):
<input type="text" id="jira_workspace" value="">
</div>
</div>
<h2>AutoTask</h2>
<label>
Enable AutoTask:
<input type="checkbox" id="autotask_manager" checked=false />
</label>
<h3>Set AutoTask data:</h3>
<div id="autotask_Options">
<div>
AutoTask Workspace URL (e.g. <i>example.autotask.net</i>):
<input type="text" id="autotask_workspace" value="">
</div>
</div>
</div>
<script src="scripts/options.js"></script>
</center>
</body>
<footer>
<center>
<h1>Links & Information</h1>
<div> <button id="bookmarks">Create Bookmarks for all links</button>
</div>
<div>
<a href="https://git.alexw-578.co.uk/AlexW-578/ExtensionVersion/raw/branch/main/version.txt">
Current Remote Version
</a>
</div>
</center>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- from www.srihash.org -->
<script src="/externalScripts/popper.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="/externalScripts/bootstrap.min.js"></script>
<center>
</html>