-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
43 lines (37 loc) · 931 Bytes
/
popup.html
File metadata and controls
43 lines (37 loc) · 931 Bytes
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>AtCoder Auto Favorite</title>
<style>
body {
font-family: Arial, sans-serif;
width: 300px;
padding: 10px;
}
textarea {
width: 100%;
height: 120px;
resize: vertical;
}
button {
margin-top: 10px;
width: 100%;
padding: 10px;
}
#result {
margin-top: 10px;
color: green;
font-size: 0.9em;
}
</style>
</head>
<body>
<h3>お気に入り自動登録</h3>
<p>ユーザIDを改行で複数入力してください。</p>
<textarea id="usernames" placeholder="user1 user2 user3"></textarea>
<button id="registerBtn">登録開始</button>
<div id="result"></div>
<script src="popup.js"></script>
</body>
</html>