-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
62 lines (58 loc) · 1.96 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
<!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="getCurrentYear.js" defer></script>
<script src="popup.js" defer></script>
</head>
<body>
<h1>LinkedIn Distraction Blocker</h1>
<img class="logo" src="logo.png" alt="LinkedIn Feed Cleaner" />
<h2>View the content of subscriptions</h2>
<label class="switch">
<input type="checkbox" id="checkbox-subs" checked />
<span class="slider round"></span>
<span id="toggOnOff"></span>
</label>
<h3 style="text-align: center">Time of consumption</h3>
<div
style="text-align: center; margin-top: -0.5rem"
title="Click here to see how much time you waste each day!"
>
<button id="timeOfConsumption"></button>
</div>
<div style="text-align: center">
<button
id="goToFAQ"
title="Do you have a question? You'll find the answer here!"
>
FAQ Section <img src="pages/assets/img/questionmark.png" alt="" />
</button>
</div>
<p style="text-align: center" id="nameYear"></p>
<!-- https://stackoverflow.com/questions/2812770/add-centered-text-to-the-middle-of-a-horizontal-rule -->
<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/linkedin-distraction-blocker/filpecgdlifajnphchanobkeealliaci/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>