-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
37 lines (37 loc) · 1.24 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
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="./assets/css/popup.css" />
</head>
<body>
<div class="backdrop"></div>
<h1 class="title1">UESTC 教务系统美化</h1>
<hr />
<div class="bg">
<h3 class="title2">自定义背景</h3>
<div class="bg-form form">
<input type="text" id="bg-input" placeholder="请输入背景图片Url" />
<button id="bg-confirm">确认</button>
</div>
<div class="now">当前Url:<span id="bg-url"></span></div>
</div>
<div class="avatar">
<h3 class="title2">自定义头像</h3>
<div class="avatar-form form">
<input type="text" id="avatar-input" placeholder="请输入头像图片Url" />
<button id="avatar-confirm">确认</button>
</div>
<div class="now">当前Url:<span id="av-url"></span></div>
</div>
<div class="right">
<button class="donate">赞赏一下</button>
<button class="suggest">意见&建议</button>
</div>
<div class="author">
Extension Designed By
<a href="https://shaunyoung.cn" target="_blank">Shaun Young</a> with
<span style="color: red">❤</span>
</div>
<script src="./assets/js/popup.js"></script>
</body>
</html>