-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
58 lines (57 loc) · 1.39 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
<!DOCTYPE html>
<html lang='ja'>
<head>
<title>Niconico check Popup</title>
<style>
body {
min-width: 300px;
font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 18px;
color: #333;
}
img {
width: 100px;
margin-right: 10px;
float: left;
}
.item {
clear: both;
padding: 10px;
}
.itemTitle {
margin: 0px;
}
.unreadMylist {
border-bottom-style: solid;
border-bottom-color: #ccc;
border-bottom-width: 1px;
}
header {
text-align: right;
border-bottom-style: solid;
border-bottom-color: #ccc;
border-bottom-width: 1px;
padding-bottom: 5px;
margin-bottom: 5px;
}
header a {
text-decoration: none;
color: #333;
}
input[type="text"] {
line-height: 18px;
}
</style>
<meta charset="utf-8"/>
<script src="jquery-3.6.0.min.js"></script>
<script src="popup.js"></script>
</head>
<body>
<header>
<a href="options.html" target="_blank" tabindex="-1">設定ページ</a>
</header>
<input type="text" id="id_mylist" size="8" placeholder="mylistID" /> を <button id="addbutton">Niconico Checkに追加</button>
<div id="result"></div>
</body>
</html>