-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypanel.html
38 lines (38 loc) · 1.06 KB
/
mypanel.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
38
<!DOCTYPE html>
<html>
<head>
<title>新标签页</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
html,body{height: 100%;}
body{font-family: 'Microsoft Yahei';margin:0;padding:0;}
.center {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
color: #CCC;
}
.content {
position: absolute;
left: 20px;
top: 10px;
}
</style>
</head>
<body>
<div class="center"><p>这是一个自定义Chrome开发者工具页面</p></div>
<div class="content">
<div><a href="javascript:;" id="check_jquery">检测当前页面jQuery</a></div>
<div><a href="javascript:;" id="open_resource">查看当前页面HTML代码的第20行</a></div>
<div><a href="javascript:;" id="test_inspect">审查当前页面第一张图片</a></div>
<div><a href="javascript:;" id="get_all_resources">获取当前页面所有Resources</a></div>
</div>
<script type="text/javascript" src="js/mypanel.js"></script>
</body>
</html>