40 lines
792 B
HTML
40 lines
792 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Cookie与UserAgent获取</title>
|
|
<style type="text/css">
|
|
body {
|
|
margin: 10px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.container {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.clean-btn {
|
|
margin-left: 20px;
|
|
padding: 5px 10px;
|
|
color: #fff;
|
|
border: 0;
|
|
background: #00AEF0;
|
|
}
|
|
.clean-btn:hover {
|
|
background: rgb(27, 177, 236);
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>水滴平台</h1>
|
|
<div>当前登录账号: <span id="current-main"></span> <button class="clean-btn">前往网站</button></div>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html> |