-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
38 lines (31 loc) · 1.07 KB
/
popup.html
File metadata and controls
38 lines (31 loc) · 1.07 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>Text Watermark Remover</title>
<link rel="stylesheet" href="popup.css">
<script src="popup.js" defer></script>
</head>
<body>
<div class="popup">
<h1>Text Watermark Remover</h1>
<label class="toggle">
<input type="checkbox" id="global-enable">
<span class="slider"></span>
<span class="label-text">모든 페이지에서 활성화</span>
</label>
<label class="toggle">
<input type="checkbox" id="site-enable">
<span class="slider"></span>
<span class="label-text">현재 페이지에서 활성화</span>
</label>
<div class="field">
<label for="domain-input">활성화된 도메인</label>
<div id="tags"></div>
<input type="text" id="domain-input" placeholder="활성화할 도메인을 입력하세요.">
</div>
<button id="save">변경 사항 저장하기</button>
<div id="status"></div>
</div>
</body>
</html>