-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpopup.html
90 lines (78 loc) · 1.97 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>popup</title>
<style>
.App {
/* background-color: #282c34;
text-align: center; */
}
.App-header {
background-color: #282c34;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: white;
}
.App-body,
.App-link {
padding: 10px;
}
.App-link a {
color: #1890ff;
}
.btn {
width: 100%;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
display: inline-block;
margin: 0.6rem auto 0.2rem auto;
font-size: 14px;
background: #1890ff;
color: #fff;
border: 1px solid #adadad;
border-radius: 2px;
cursor: pointer;
border-color: transparent;
text-align: center;
text-decoration-line: none;
box-sizing: border-box;
}
.btn:hover {
background-color: #40a9ff;
}
</style>
</head>
<body style="width: 180px">
<div className="App">
<div className="App-header">
<h4>已支持一键复制csdn代码!</h4>
</div>
<div className="App-body">
<fieldset>
<legend>设置:</legend>
<div>
<input type="checkbox" id="autoOpenCode" name="autoOpenCode" />
<label htmlFor="autoOpenCode">自动展开代码块</label>
</div>
</fieldset>
</div>
<div className="App-link">
<a class="btn"
href="https://chrome.google.com/webstore/detail/exportgpt-export-chatgpt/jamcijfplmgbngnppdhmbbogjebgfimn"
target="_blank" rel="noreferrer">
ChatGPT最全导出插件
</a>
<a class="btn" href="https://lwebapp.com/zh/tools" target="_blank" rel="noreferrer">
在线工具箱
</a>
<a class="btn" href="https://lwebapp.com/zh/support" target="_blank" rel="noreferrer">
支持作者更新
</a>
</div>
</div>
<script type="text/javascript" src="./popup.js"></script>
</body>
</html>