-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
71 lines (69 loc) · 3 KB
/
popup.html
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
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<div class="tab">
<button class="tabLinks" id="HomeTab">Home</button>
<button class="tabLinks" id="BlockTab">BlockList</button>
<button class="tabLinks" id="SiteTab">SiteList</button>
<button class="tabLinks" id="EtcTab">Etc</button>
</div>
<div id="Home" class="tabContent">
<label for="cafeName">적용할 카페 주소 입력</label>
<div>ex)cafe.naver.com/example 일 경우, example 입력</div>
<input type="text" name="cafeName" class="input_text" id="cafeName" style="width:190px; height:18px" maxlength="20">
<button type="button" id="cafeAddButton">추가</button>
<button type="button" id="nowCafeAddButton">현재 주소 추가</button>
<button type="button" id="addBookMark" title="Ctrl+Shift+E 단축키로도 동작합니다.">현재 보고 있는 글 북마크에 추가</button>
<br></br>
<label for="sellerName">차단할 유저 닉네임</label>
<input type="text" name="nickname" class="input_text" id="sellerName" style="width:190px; height:18px" maxlength="20">
<button type="button" id="userAddButton">추가</button>
<div class="check_box">
<input type="checkbox" id="eraseButton" >글 필터링 적용</input>
</div>
</div>
<div id="BlockList" class="tabContent">
<table style="border: 1px;" id="blockTable">
<thead>
<tr>
<th>닉네임</th>
<th>
<button type="button" id="selectAllUser">모두 선택</button>
<button type="button" id="eraseUser">선택 삭제</button>
</th>
</tr>
</thead>
<tbody id="blockTbody">
</tbody>
</table>
<div class="check_box">
<input type="checkbox" id="blockVipUser">최고등급 유저 글 삭제 ON/OFF</input>
</div>
</div>
<div id="Site" class="tabContent">
<table style="border: 1px;" id="siteTable">
<thead>
<tr>
<th>카페주소</th>
<th>
<button type="button" id="selectAllSite">모두 선택</button>
<button type="button" id="eraseSite">선택 삭제</button>
</th>
</tr>
</thead>
<tbody id="siteTbody">
</tbody>
</table>
</div>
<div id="Etc" class="tabContent">
<button type="button" id="goGithub">깃허브</button>
</div>
<script src="handleExtension.js"></script>
<script src="popupScript.js"></script>
<div id="snackbar"></div>
</body>
</html>