-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
34 lines (31 loc) · 1.28 KB
/
popup.html
File metadata and controls
34 lines (31 loc) · 1.28 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
<link href="popup.css" rel="stylesheet" type="text/css" />
<script type="module" src="popup.js"></script>
<div class="container">
<div>
<h1 class="title">ChatGPT Conversations & Tags</h1>
<div class="tagsContainer" id="tagsContainer">
<h2 class="subtitle">Create tag</h2>
<div class="addTagBlock">
<input class="createTag" type="text" id="tag" placeholder="Set new tag name..." />
<button class="addTag" id="addTag">Create</button>
</div>
<div id="tags" class="tags"></div>
</div>
<hr />
<h2 id="chats-list" class="subtitle">Chats list</h2>
<h3>Filters</h3>
<div>
<input type="text" class="filter-title" id="filter-title" placeholder="Filter by title..." />
<button class="btn btn-clear" id="clear-filter-title">x</button>
<button class="btn" id="btn-filter-title">Search</button>
</div>
<div id="filter-tags" class="tags"> </div>
<h3>Chats</h3>
<div class="conversations" id="conversations"></div>
<div id="options-buttons" class="optionsButtons">
<button class="btn btn-clear" id="btn-clearAll">Clear all data</button>
<button class="btn btn-clear" id="btn-clearTags">Clear all assigned tags</button>
<button class="btn " id="btn-about">About</button>
</div>
</div>
</div>