-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
35 lines (35 loc) · 1002 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>NETWORK-PLUS</title>
<style>
.popup-box {
width: 300px;
padding: 10px;
background: #fff;
}
p {
font-size: 14px;
}
p span {
display: inline-block;
background-color: #fff5f5;
color: #ff502c;
font-size: 14px;
padding: .065em .4em;
border-radius: 2px;;
margin: 0 3px;
}
</style>
</head>
<body>
<div class="popup-box">
<p>windows系统请按<span>F12</span>进入开发者页面</p>
<p>Mac OS系统请按<span>option</span>+<span>command</span>+<span>i</span>进入开发者页面</p>
<p>进入后选择<span>Network PLUS</span>选项卡开始调试</p>
</div>
</body>
</html>