summaryrefslogtreecommitdiff
path: root/popup/popup.html
blob: 7050511978ab99aafc533d990dd33177f0cfe9e2 (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
28
29
30
31
<!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>
      <ul id="websites-list"></ul>
      <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>
      <p>About:
        <a href="https://www.sameerasw.com/">sameerasw.com</a>
      </p>
    </div>
  </div>
  <script src="popup.js"></script>
</body>

</html>