about summary refs log tree commit diff stats
path: root/src/pages/popup/popup.html
blob: adf45e6c2da364ee98896ca75c888b28e69659dc (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <link href="../stylesheets/styles.css" rel="stylesheet" />
  <link href="./style.css" rel="stylesheet" />
</head>

<body>
  <div class="some-block">
    <h4>Youtube</h4>
    <input id="disable-invidious" type="checkbox" checked />
  </div>

  <div class="some-block">
    <h4>Twitter</h4>
    <input id="disable-nitter" type="checkbox" checked />
  </div>

  <div class="some-block">
    <h4>Instagram</h4>
    <input id="disable-bibliogram" type="checkbox" checked />
  </div>

  <div class="some-block">
    <h4>Reddit</h4>
    <input id="disable-reddit" type="checkbox" checked />
  </div>

  <div class="some-block">
    <h4>Search</h4>
    <input id="disable-searchEngine" type="checkbox" checked />
  </div>

  <div class="some-block">
    <h4>Translate</h4>
    <input id="disable-simplyTranslate" type="checkbox" checked />
  </div>

  <div class="some-block">
    <h4>Maps</h4>
    <input id="disable-osm" type="checkbox" checked />
  </div>

  <div class="some-block">
    <h4>Wikipedia</h4>
    <input id="disable-wikipedia" type="checkbox" checked />
  </div>

  <div class="some-block">
    <h4>Medium</h4>
    <input id="disable-scribe" type="checkbox" checked />
  </div>

  <div class="buttons">
    <a class="button" id="update-instances">
      <span>Update Instances&nbsp;</span>
    </a>
    <a class="button" id="more-options">
      <span data-localise="__MSG_moreOptions__">More Options&nbsp;</span>
      <svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512">
        <path d="M384,224V408a40,40,0,0,1-40,40H104a40,40,0,0,1-40-40V168a40,40,0,0,1,40-40H271.48" style="
            fill: none;
            stroke: inherit;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 32px;
          " />
        <polyline points="336 64 448 64 448 176" style="
            fill: none;
            stroke: inherit;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 32px;
          " />
        <line x1="224" y1="288" x2="440" y2="72" style="
            fill: none;
            stroke: inherit;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 32px;
          " />
      </svg>
    </a>
  </div>


  <script type="module" src="./popup.js"></script>
  <script src="../../assets/javascripts/localise.js"></script>
</body>

</html>