-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
95 lines (95 loc) · 2.66 KB
/
popup.html
File metadata and controls
95 lines (95 loc) · 2.66 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
<!DOCTYPE html>
<html>
<head>
<title>The AI Button</title>
<style>
body {
font-family: Arial, sans-serif;
width: 200px;
padding: 10px;
}
a {
display: flex;
align-items: center;
justify-content: center; /* Center the links beside each icon */
margin: 5px 0;
text-decoration: none;
color: #666;
border: 1px solid #e0e0e0; /* Changed to light grey border */
border-radius: 5px; /* Rounded corners */
padding: 5px; /* Padding inside the border */
background-color: white;
transition: all 0.2s ease;
}
a:hover {
text-decoration: underline;
border-color: #a9a9a9; /* Only change border color on hover */
background-color: white;
box-shadow: 0 0 5px grey;
}
a:active {
background-color: grey; /* Darker background when clicked */
}
a img {
vertical-align: middle;
margin-right: 5px;
}
h3 {
font-weight: normal; /* Remove bold styling */
color: #666;
}
.title {
color: grey;
}
.footer {
margin-top: 15px;
font-size: 10px;
text-align: center;
color: #666;
border-top: 1px solid #eee;
padding-top: 5px;
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
}
.footer a {
border: none;
display: flex;
align-items: center;
padding: 0;
color: #666;
}
.footer a:hover {
color: #0078d7;
}
</style>
</head>
<body>
<h3 class="title">
<img src="images/ri--chat-ai-fill32.png" alt="AI Icon" width="16" height="16"> The AI Button
</h3>
<h3>AI Apps </h3>
<a href="https://chatgpt.com/" target="_blank">
<img src="images/chatGPT.png" alt="ChatGPT" width="16" height="16"> ChatGPT
</a>
<a href="https://gemini.google.com/app" target="_blank">
<img src="images/googleGemini.png" alt="Gemini" width="16" height="16"> Gemini
</a>
<a href="https://www.meta.ai/" target="_blank">
<img src="images/metaAi.png" alt="Meta AI" width="16" height="16"> Meta AI
</a>
<a href="https://www.perplexity.ai/" target="_blank">
<img src="images/perplexity.png" alt="Perplexity" width="16" height="16"> perplexity
</a>
<a href="https://copilot.microsoft.com/" target="_blank">
<img src="images/copilot.png" alt="Copilot" width="16" height="16"> Copilot
</a>
<div class="footer">
<a href="https://github.com/samhrncir/TheChatButton/" target="_blank">
<img src="images/github.png" alt="Github" width="12" height="12"></a>
<a href="https://github.com/samhrncir/TheChatButton/issues" target="_blank">Feature Requests</a>
| GPL-3.0
</div>
</body>
</html>