-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
33 lines (29 loc) · 859 Bytes
/
popup.html
File metadata and controls
33 lines (29 loc) · 859 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
32
33
<!DOCTYPE html>
<html>
<head>
<title>JSON to Underscore Case</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>JSON to Underscore Case</h1>
<div class="input-section">
<h2>Input JSON</h2>
<textarea id="input-json" placeholder="Paste your JSON here..."></textarea>
<div class="button-row">
<button id="convert-btn">Convert</button>
<button id="paste-btn">Paste from Clipboard</button>
</div>
</div>
<div class="output-section">
<h2>Output JSON</h2>
<textarea id="output-json" readonly></textarea>
<div class="button-row">
<button id="copy-btn">Copy to Clipboard</button>
</div>
</div>
<div id="error-message" class="error hidden"></div>
</div>
<script src="popup.js"></script>
</body>
</html>