Welcome to mirror list, hosted at ThFree Co, Russian Federation.

popup.html « firefox « Extensions - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f0fdc1acf36d87530852f05dc54cabb2d575e35 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta content="text/html; charset=utf-8">
    <title>Return YouTube Dislike</title>
    <link rel="stylesheet" href="popup.css">
  </head>
  <body>


    <center>
      <img src="icons/icon48.png" alt="Logo" />
      <h1>Return YouTube Dislike</h1>
      <p>by Dmitrii Selivanov & Community</p>

      <button id="link_website">Website</button>
      <button id="link_github">GitHub</button>
      <button id="link_discord">Discord</button>

      <br>
<!--      <button id="advancedToggle">Show Settings</button>-->
      <br>

    </center>

    <div id="advancedSettings">

      <label class="switch">
        <input type="checkbox" id="disable_ratio_bar" />
        <span class="slider" />
        <span class="switchLabel">Lorem ipsum dolor sit amet</span>
    </label><br>

    <label class="switch">
        <input type="checkbox" id="disable_api_unlisted" />
        <span class="slider" />
        <span class="switchLabel">Lorem ipsum dolor sit amet</span>
    </label><br>

    </div>


  </body>
  <script src="popup.js"></script>
</html>