summaryrefslogtreecommitdiff
path: root/popup/popup.html
blob: 3b267e740e8818dc3b65ceaea097755a273cea76 (plain)
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
<!DOCTYPE html>
<html>

<head>
  <meta charset="UTF-8">
  <link rel="stylesheet" href="popup.css">
</head>

<body>
  <div class="container">
    <div id="extension-header">
      <h1 class="headline">ZenInternet by @sameerasw</h1>
    </div>
    <div id="extension-body">
      <label class="setting">
        <input type="checkbox" id="enable-styling">
        Enable Styling
      </label>
      <button id="refetch-css">Refetch latest styles</button>
      <button id="restart-background">Restart Background Script (optional)</button>
      <a href="https://sameerasw.github.io/my-internet/">Styles repo</a>
    </div>
  </div>
  <script src="popup.js"></script>
</body>

</html>