-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
64 lines (59 loc) · 1.87 KB
/
popup.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<script src="scripts/getCurrentYear.js" defer></script>
<script src="popup.js" defer></script>
<script src="scripts/content.js"></script>
<title>YouTube Time Manager</title>
</head>
<body>
<h1>YouTube Time Manager</h1>
<img
src="icon/icon.png"
alt="YouTube Focus Icon"
width="120"
height="120"
/>
<div style="text-align: center; margin-top: 10px">
<button id="redirectButton" title="Click here to set your goals">
Define your goals <img src="icon/redirect.png" alt="" />
</button>
</div>
<label class="switch" title="Want to see videos of your subs?">
<input type="checkbox" id="checkbox-subs" checked />
<span class="slider round"></span>
<span id="toggOnOff"></span>
</label>
<button
id="goToFAQ"
title="Do you have a question? You'll find the answer here!"
>
FAQ Section <img src="icon/questionmark.png" alt="" />
</button>
<p style="text-align: center" id="nameYear"></p>
<div class="separator">How To Support Us</div>
<div class="underButtons">
<a
title="Rate us on the chrome store!"
href="https://chromewebstore.google.com/detail/youtube-disblock/ikhkekdjdjpklbpmgloalpapjgfolheh/reviews"
target="_blank"
>
<button>Rate US👍</button>
</a>
<a
href="https://buymeacoffee.com/olivierluethy"
target="_blank"
title="Do you want to support my project?"
>
<img
src="https://cdn.buymeacoffee.com/buttons/v2/default-orange.png"
alt="Buy Me a Coffee"
class="coffee-button"
/>
</a>
</div>
</body>
</html>