2025-02-01 13:37:54 +08:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>My First Extension</title>
|
|
|
|
|
<style>
|
|
|
|
|
body {
|
2025-02-01 23:57:42 +08:00
|
|
|
|
width: 405px;
|
2025-02-01 13:37:54 +08:00
|
|
|
|
/* height: 400px; */
|
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 40px;
|
|
|
|
|
background-color: #4CAF50;
|
|
|
|
|
color: white;
|
|
|
|
|
border: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button:hover {
|
|
|
|
|
background-color: #45a049;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<link rel="stylesheet" href="./simple.css">
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<button id="openOptions">打开测试网页</button>
|
2025-02-03 03:42:28 +08:00
|
|
|
|
<button id="newIssue">新的中转链接反馈 或 bug反馈</button>
|
2025-02-01 13:37:54 +08:00
|
|
|
|
|
|
|
|
|
<p></p>
|
|
|
|
|
<h3 class="rainbow">善良的好人们,行行好施舍点银子给我买包烟吧,一块两块不嫌少三块四块会更好,赠人香烟手有余香。——by:爱抽烟的人</h3>
|
|
|
|
|
<p></p>
|
2025-02-01 23:57:42 +08:00
|
|
|
|
<img width="200" height="300" style="display: inline-block" src="images/WeChatPay.png">
|
|
|
|
|
<img width="200" height="300" style="display: inline-block" src="images/AliPay.png">
|
2025-02-01 13:37:54 +08:00
|
|
|
|
|
|
|
|
|
<script src="popup.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|