-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinspector.html
More file actions
31 lines (28 loc) · 961 Bytes
/
Copy pathinspector.html
File metadata and controls
31 lines (28 loc) · 961 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>URLyze Inspector</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="wrap">
<header>
<h1>URLyze — Inspector</h1>
<div class="controls">
<button id="useTab">Use current tab URL</button>
<button id="parseBtn">Parse</button>
</div>
</header>
<label for="urlInput" class="label">URL / Query string</label>
<textarea id="urlInput" placeholder="Paste a URL or query string (example: ?a=1&b=hello%20world)"></textarea>
<div id="paramsContainer" class="params"></div>
<footer class="footer">
<small>Each parameter shows actions: URL-decode, Base64-decode, Copy.</small>
</footer>
</div>
<script src="lib/b64.js"></script>
<script src="popup.js"></script>
</body>
</html>