-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
30 lines (30 loc) · 937 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/popup.css">
<script src="/popup.js"></script>
<title>namukun</title>
</head>
<body>
<table>
<tr>
<td><input type="checkbox" data-key="delete_del"></td>
<td>취소선 제거</td>
</tr>
<tr>
<td><input type="checkbox" data-key="delete_3dot"></td>
<td>(...), (?), (!) 제거</td>
</tr>
<tr>
<td><input type="checkbox" data-key="delete_sidebar"></td>
<td>사이드바 제거</td>
</tr>
<tr>
<td><input type="checkbox" data-key="add_link_title"></td>
<td>내부 링크 제목 추가</td>
</tr>
</table>
</body>
</html>