-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
84 lines (69 loc) · 2.48 KB
/
popup.html
File metadata and controls
84 lines (69 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XPath Extractor</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<header class="topbar">
<span class="title">XPath Extractor</span>
<button id="themeToggle" class="icon-btn-toggle" title="Toggle theme">
</button>
</header>
<main class="wrap">
<section class="block">
<div class="block-head">XPath</div>
<textarea id="xpathInput" rows="2" placeholder="//div[@class='item']"></textarea>
<div class="toolbar">
<button class="icon-btn primary" id="testBtn" title="Test">
Test
</button>
<button class="icon-btn" id="highlightBtn" title="Highlight">
Highlight
</button>
<button class="icon-btn" id="copyXPathBtn" title="Copy XPath">
Copy XPath
</button>
</div>
</section>
<section class="block inline">
<span class="block-head">Mode</span>
<label><input type="radio" name="extractMode" value="text" checked> Text</label>
<label><input type="radio" name="extractMode" value="attributes"> Attributes</label>
</section>
<section class="block">
<div class="block-head">
Results <small id="resultCount">(0)</small>
</div>
<textarea id="textsOutput" rows="6" readonly placeholder="Results will appear here..."></textarea>
<div class="toolbar">
<button class="icon-btn" id="copyTextsBtn" title="Copy text">
Copy text
</button>
<button class="icon-btn" id="copyArrayBtn" title="Copy array">
Array
</button>
<button class="icon-btn" id="exportCsvBtn" title="Export CSV">
CSV
</button>
<button class="icon-btn" id="exportJsonBtn" title="Export JSON">
JSON
</button>
</div>
</section>
<details class="block">
<summary class="block-head">Settings</summary>
<div style="margin-top: 8px;">
<label>Default Export: <select id="defaultExportPopup">
<option value="csv">CSV</option>
<option value="json">JSON</option>
</select></label>
</div>
</details>
</main>
<footer class="status" id="statusBar">Ready <a href="https://www.buymeacoffee.com/HFerrahoglu" target="_blank" style="float:right; color:var(--muted); text-decoration:none;">☕ Donate</a></footer>
<script src="popup.js"></script>
</body>
</html>