-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
112 lines (95 loc) · 2.3 KB
/
Copy pathpopup.html
File metadata and controls
112 lines (95 loc) · 2.3 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChatGPT Graph Extension</title>
<style>
body {
width: 300px;
padding: 20px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
margin: 0;
}
h1 {
font-size: 20px;
margin: 0 0 16px 0;
font-weight: 600;
}
p {
font-size: 14px;
line-height: 1.6;
margin: 0 0 16px 0;
opacity: 0.95;
}
.status {
background: rgba(255, 255, 255, 0.2);
padding: 12px;
border-radius: 8px;
margin-bottom: 16px;
font-size: 13px;
}
.button {
background: rgba(255, 255, 255, 0.9);
color: #764ba2;
border: none;
padding: 10px 16px;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
width: 100%;
transition: all 0.2s;
}
.button:hover {
background: white;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.features {
list-style: none;
padding: 0;
margin: 0 0 16px 0;
font-size: 13px;
}
.features li {
padding: 8px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.features li:last-child {
border-bottom: none;
}
.features li::before {
content: '✓ ';
font-weight: bold;
margin-right: 8px;
}
.footer {
text-align: center;
font-size: 12px;
opacity: 0.8;
margin-top: 16px;
}
</style>
</head>
<body>
<h1>🎯 ChatGPT Graph Extension</h1>
<p>Transform your ChatGPT conversations into an interactive graph visualization!</p>
<div class="status" id="status">
<strong>Status:</strong> Ready to use
</div>
<ul class="features">
<li>Graph-based conversation view</li>
<li>Create and explore tangent branches</li>
<li>Navigate conversation history visually</li>
<li>Zoom, pan, and interact with nodes</li>
</ul>
<button class="button" id="openChatGPT">Open ChatGPT</button>
<div class="footer">
Version 1.0.0
</div>
<script src="popup.js"></script>
</body>
</html>