-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpopup.html
34 lines (32 loc) · 1.08 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
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>Getting Started Extension's Popup</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="popup.css">
<!-- <script type="module" src="popup.js"></script> -->
<script src="popup.js"></script>
</head>
<body>
<div id="container">
<center>
<span id="switchContainer"><!-- Rounded switch -->
<h1 id="title">ZeroWiki</h1>
<label class="switch" title="Click here to turn off the extension">
<input type="checkbox" checked id="onoffbutton">
<span class="slider round"></span>
</label>
</span>
</center>
<span id="dropdownText">
<a id="infoMirror" target="_blank" href="https://wikipedia.org/wiki/Wikipedia:Mirrors_and_forks">Choose a Wikipedia mirror:</a>
</span>
<div id="dropdown"></div>
</div>
</body>
</html>