-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
92 lines (88 loc) · 3.42 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>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
body {
font-family: 'Roboto', sans-serif;
padding: 10px;
background-color: #2C2C2C;
color: #FFFFFF;
min-width: 200px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
button {
padding: 10px 20px;
background-color: #2f88ff;
border: none;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 4px;
width: 100%;
}
.buttons-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
width: 100%;
}
a {
color: #87cefa;
}
ul {
list-style: none;
padding-left: 0;
}
li::before {
content: "\2764\0020";
color: #FF0000;
}
h3 {
text-align: center;
}
img {
width: 16px;
height: 16px;
}
.title-container {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
</style>
</head>
<body>
<div class="title-container">
<img src="icons/icon16.png" alt="ChatGPT PLUS | MODE MAESTRO">
<h3>ChatGPT PLUS | MODE MAESTRO</h3><br>
</div>
**************
<ul>
<li>Quickly access any mode of ChatGPT Plus: No more detours!</li><br>
<div class="buttons-container">
<button id="openButton"><i class="fas fa-plug"></i> GPT-4 + Plugins <br>w/ dropdown resize</button>
<button id="openButton4Browsing"><i class="fas fa-globe"></i> GPT-4 + Browsing</button>
<button id="openButton4CodeInterpreter"><i class="fas fa-globe"></i> GPT-4 Adv Data Analysis</button>
<button id="openButton4Default"><i class="fas fa-robot"></i> GPT-4 Vision</button>
<button id="openButton4Dalle"><i class="fas fa-robot"></i> GPT-4 w/DALLE</button>
<button id="openButton35Turbo"><i class="fas fa-turbo"></i> GPT-3.5 Turbo</button>
</div>
<script src="popup.js"></script><br><br>
<li style="color: #d0b55e;">This extension also extends your 'Plugins Dropdown' in Plugins Mode to display more of your installed plugins (default shows 4).</li><br>
<li>If this plugin saves you some aggravation, consider tipping via my <a href="https://venmo.com/myronkoch" target="_blank">Venmo,</a> <a href="https://www.paypal.me/myronkoch" target="_blank"> PayPal</a> ☕<a href="https://www.buymeacoffee.com/myronkoch" target="_blank"> buy.me.a.coffee</a>, or send BTC, ETH, ATOM or Polygon to <a href="https://myronkoch.eth.xyz" target="_blank">MyronKoch.eth</a></li><br>
<li style="color: #d0b55e;">PLEASE NOTE THIS PLUGIN ONLY WORKS ON THE _PAID_ VERSION OF ChatGPT FOUND AT chat.openai.com </li>
</ul>
</body>
</html>