-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpanel.html
More file actions
151 lines (123 loc) · 4.93 KB
/
Copy pathpanel.html
File metadata and controls
151 lines (123 loc) · 4.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Chrome DevTools Filters Request/Response</title>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/main.css?t=3" rel="stylesheet">
<style id="settings"></style>
</head>
<body>
<table>
<thead>
<tr class="filter"></tr>
</thead>
<tbody class="requests">
</tbody>
</table>
<img class="spy" src="images/spy16.png"/>
<div class="split-area">
<div class="transparent">
</div>
<div class="details">
<div style="display:inline-block;text-align:left;position:inherit;margin-bottom:15px;width:100%;">
<div style="margin-bottom: 30px;">
<button id="form-fbtn" class="btn btn-success" type="button" style="float:left;margin-right:10px;">
Filters Response
</button>
<button id="form-fbtn-save" class="btn btn-warning" type="button" style="float:left;display:none;">
Save
</button>
</div>
<div id="fbtnbox" style="margin-top:50px;display:none;">
<div class="form-group">
<label for="filter-form-headers">Filter response headers (string list):</label>
<textarea id="filter-form-headers" class="form-control" rows="2" cols="50" style="overflow: hidden; overflow-wrap: break-word; resize: none; height: 80px;"></textarea>
</div>
<div class="form-group">
<label for="filter-form-body">Filter response body (string list):</label>
<textarea id="filter-form-body" rows="2" cols="50" class="form-control" style="overflow: hidden; overflow-wrap: break-word; resize: none; height: 80px;"></textarea>
</div>
</div>
</div>
<div class="clearfix form-status-clear"></div>
<form class="form-inline">
<input id="form-id" type="hidden" value="0">
<div class="top-controls">
<div class="form-method-clear"></div>
<div class="form-group limited form-method">
<label for="form-method">Request:</label>
<select id="form-method" class="form-control">
<option>GET</option>
<option>POST</option>
<option>PATCH</option>
<option>PUT</option>
<option>DELETE</option>
<option>OPTIONS</option>
<option>TRACE</option>
<option>CONNECT</option>
<option>HEAD</option>
</select>
</div>
<div class="clearfix form-status-clear"></div>
<div class="form-group limited form-status">
<label for="form-status">Answer status:</label>
<input id="form-status" class="form-control" readonly value="">
<div class="hint"><p id="hint">Payment Required</p></div>
</div>
<div class="clearfix form-time-clear"></div>
<div class="form-group limited form-time">
<label for="form-time">Time:</label>
<input id="form-time" class="form-control" readonly value="">
</div>
<div class="buttons">
<button id="form-cancel" class="btn btn-default" type="button">Cancel</button>
<button id="form-send" class="btn btn-success" type="button">
<div class="loader"></div>
Send
</button>
</div>
</div>
<div class="clearfix"></div>
<div class="other-controls">
<div class="form-group">
<label for="form-url">URL:</label>
<textarea autofocus id="form-url" class="form-control" rows="1" cols="50"></textarea>
</div>
<div class="form-group">
<label for="form-headers">Request headers:</label>
<textarea id="form-headers" class="form-control" rows="2" cols="50"></textarea>
</div>
<div class="form-group">
<label for="form-body">Request body:</label>
<textarea id="form-body" rows="2" cols="50" class="form-control"></textarea>
</div>
<div class="form-group">
<label for="form-headers2">Response headers:</label>
<textarea id="form-headers2" class="form-control" rows="2" cols="50" readonly></textarea>
</div>
<div class="form-group">
<label id="form-label-body2">Response body:</label>
<textarea id="form-body2" rows="2" cols="50" class="form-control" readonly></textarea>
<div id="form-body2-image"></div>
</div>
<div class="form-group">
<label></label>
<div><div id="result"></div></div>
</div>
</div>
</form>
</div>
</div>
<div class="scroll-up" id="scroll-up">⇧<span></span></div>
<div class="new-request" id="new-request">+<span>new</span></div>
<script src="js/jquery-1.11.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js?t=3"></script>
<script src="js/autosize.min.js"></script>
<script src="js/split.min.js"></script>
<script src="js/pretty-data.js"></script>
</body>
</html>