blob: 4dde26f8fbb3598f24c7f534d4790343c960a271 (
plain) (
blame)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
  | 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title></title>
  <link href="../styles.css" rel="stylesheet">
  <title>Privacy Redirect Options</title>
</head>
<body>
  <section class="options settings_block">
    <div class="onoffswitch switch" aria-label="Toggle Nitter redirects">
      <h1>Nitter Redirects</h1>
      <input aria-hidden="true" id="disableNitter" type="checkbox" checked> 
      <label for="disableNitter" class="checkbox-label">
      </label>
    </div>
  </section>
  <section class="options settings_block">
    <div class="onoffswitch switch" aria-label="Toggle Invidious redirects">
      <h1>Invidious Redirects</h1>
      <input aria-hidden="true" id="disableInvidious" type="checkbox" checked> 
      <label for="disableInvidious" class="checkbox-label">
      </label>
    </div>
  </section>
  <section class="options settings_block">
    <div class="onoffswitch switch" aria-label="Toggle Bibliogram redirects">
      <h1>Bibliogram Redirects</h1>
      <input aria-hidden="true" id="disableBibliogram" type="checkbox" checked> 
      <label for="disableBibliogram" class="checkbox-label">
      </label>
    </div>
  </section>
  <section class="options settings_block">
    <h1>Nitter Instance</h1>
    <input id="nitterInstance" type="url" placeholder="https://nitter.net">
    <h1>Invidious Instance</h1>
    <input id="invidiousInstance" type="url" placeholder="https://invidio.us">
    <h1>Bibliogram Instance</h1>
    <input id="bibliogramInstance" type="url" placeholder="https://bibliogram.art">
  </section>
  <footer>
    <a class="button" id="save">Save</a>
  </footer>
  <script src="./options.js"></script>
</body>
</html>
 
  |