-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
42 lines (38 loc) · 1.49 KB
/
Copy pathpopup.html
File metadata and controls
42 lines (38 loc) · 1.49 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Temporary Chat Auto</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<main class="popup">
<header class="header">
<div>
<h1 data-i18n="extensionActionTitle">Temporary Chat Auto</h1>
<p id="status" role="status" aria-live="polite" data-i18n="statusReady">Ready</p>
</div>
</header>
<label class="switch-row">
<span>
<strong data-i18n="popupChatgptToggleTitle">ChatGPT · Temporary Chat</strong>
<small data-i18n="popupChatgptToggleDescription">Open new ChatGPT conversations in Temporary Chat.</small>
</span>
<input id="chatgptEnabled" type="checkbox">
</label>
<label class="switch-row">
<span>
<strong data-i18n="popupClaudeToggleTitle">Claude · Incognito</strong>
<small data-i18n="popupClaudeToggleDescription">Open new Claude conversations in Incognito.</small>
</span>
<input id="claudeEnabled" type="checkbox">
</label>
<button id="applyNow" type="button" data-i18n="popupApplyButton">Apply to current tab</button>
<p class="support">
<a href="https://ko-fi.com/edgetpu" target="_blank" rel="noopener noreferrer" data-i18n="popupSupportLink">Support development</a>
</p>
</main>
<script src="popup.js"></script>
</body>
</html>