-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
58 lines (53 loc) · 2.01 KB
/
Copy pathpopup.html
File metadata and controls
58 lines (53 loc) · 2.01 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
<!doctype html>
<html lang="fa" dir="rtl">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Elementor Extractor</title>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<main class="app">
<header class="hero">
<div>
<p class="eyebrow">Elementor Extractor</p>
<h1>استخراج المانهای المنتوری</h1>
</div>
<span id="statusBadge" class="badge">آماده</span>
</header>
<section class="actions">
<button id="scanButton" class="primary" type="button">اسکن صفحه فعلی</button>
<button id="downloadElementorButton" type="button" disabled>دانلود برای المنتور</button>
<button id="downloadReportButton" type="button" disabled>دانلود گزارش</button>
<button id="copyButton" type="button" disabled>کپی خروجی</button>
</section>
<section id="message" class="message" hidden></section>
<section class="stats" aria-label="خلاصه استخراج">
<article>
<strong id="totalNodes">۰</strong>
<span>المان</span>
</article>
<article>
<strong id="widgetCount">۰</strong>
<span>ویجت</span>
</article>
<article>
<strong id="imageCount">۰</strong>
<span>تصویر</span>
</article>
<article>
<strong id="linkCount">۰</strong>
<span>لینک</span>
</article>
</section>
<section class="result">
<div class="result-header">
<h2>خروجی</h2>
<span id="siteInfo">هنوز اسکن نشده</span>
</div>
<textarea id="output" spellcheck="false" placeholder="بعد از اسکن، JSON قابل درونریزی المنتور اینجا نمایش داده میشود."></textarea>
</section>
</main>
<script src="popup.js"></script>
</body>
</html>