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

popup.html « chrome « Extensions - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 903fb2f0e665d462062dbe6f7bd0bb1898106dc2 (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
<!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>

    <fieldset id="advancedSettings">
      <legend id="advancedLegend">Settings</legend>

      <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 />
    </fieldset>
  </body>
  <script src="popup.js"></script>
</html>