-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
popup.html
45 lines (41 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="popup.css" />
<title>Colab Autorun and Connect</title>
<script src="browser-polyfill.js" type="module"></script>
<!-- <script defer src="common.js"></script> -->
<script defer src="popup.js" type="module"></script>
</head>
<body>
<h3>Colab Autorun and Connect</h3>
<p><a href="https://github.com/tdulcet/Colab-Autorun-and-Connect" target="_blank"><button type="button">ℹ️
Information</button></a>
<button type="button" id="settings">⚙️ Settings</button>
<a href="https://www.tealdulcet.com/" target="_blank"><button type="button">❤️ Donate</button></a>
</p>
<hr style="width: 100%" />
<p><a href="https://colab.research.google.com/#create=true" target="_blank" class="button">🆕 Open new Notebook</a>
</p>
<div class="no-data">
<p>⟳ Refresh page to show</p>
</div>
<div class="data hidden">
<p>
<label>
<input type="checkbox" id="enabled" checked disabled>
Enabled for this Notebook
</label>
</p>
<div id="table">
<p><strong>Status</strong>: <span id="status"></span></p>
<p id="time" class="hidden">
<strong>For</strong>:<br>
<span id="stopwatch"></span><br>
<span id="date"></span>
</p>
</div>
</div>
</body>
</html>