-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
35 lines (35 loc) · 1.26 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
<html>
<head>
<title>GPT Do Nothing - Popup</title>
<link rel="stylesheet" type="text/css" href="css/popup.css" />
<script src="js/_vendor/jquery.js"></script>
<script src="js/_vendor/drm.js"></script>
<script src="js/_setup.js"></script>
<script src="js/Evt/Bus.js"></script>
<script src="js/Evt.js"></script>
<script src="js/Locale.js"></script>
<script src="js/Message.js"></script>
<script src="js/Storage.js"></script>
<script src="js/Url.js"></script>
<script src="js/Page.js"></script>
<script src="js/Page/Background.js"></script>
<script src="js/Page/Popup.js"></script>
</head>
<body>
<div id="logo-container">
<div id="logo" class="not-ready"></div>
<h1 id="logo-text">GPT Do Nothing</h1>
</div>
<div id="status-container">
<h2>
<span id="status-heading" data-i18n="popupStatusHeading"></span>
<span id="status-gpt-text"></span>
</h2>
<p id="status-text" class="not-ready" data-i18n="popupStatus"></p>
</div>
<div class="hr clr"></div>
<a class="float-l" href="options.html" target="_blank" data-i18n="popupOptionsButton"></a>
<a id="start-stop" class="float-r" href="#" data-i18n=""></a>
<div class="clr"></div>
</body>
</html>