-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
118 lines (99 loc) · 3.15 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>LikeFree's Popup</title>
<style type="text/css">
body {
margin: 10px;
display: block;
font-size: 14px;
width: 300px;
/* font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif; */
/* white-space: nowrap; */
/* background-color: blanchedAlmond; */
}
h1 {
font-size: 14px;
}
p {
font-size: 16px;
font-style: normal;
font-variant: normal;
margin: 0px;
padding: 5px;
}
hr {
color: black;
}
#container {
align-items: center;
display: flex;
justify-content: space-between;
}
a:link {
color: brown;
background-color: transparent;
text-decoration: none;
outline: none;
}
a:visited {
color: brown;
background-color: transparent;
text-decoration: none;
outline: none;
}
a:hover {
color: pink;
background-color: transparent;
outline: none;
/*text-decoration: underline;*/
}
/* https://www.w3schools.com/howto/howto_css_vertical_menu.asp */
.vertical-menu {
/* width: 250px; */
display: block;
/* Make the links appear below each other */
}
</style>
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
-->
<script src="likefree.js"></script>
</head>
<body>
<h1><a href="https://medium.com/@vivekbhookya/likefree-40fa694cab3f" target="_blank">
LikeFree</a></h1>
<div id="container">
<div class="vertical-menu">
<span>Likes are gone! Focus on what's important.</span>
<hr>
<p id="message">Cycle Magical Messages (Please enable JavaScript)</p>
</span>
<hr>
<!-- Uncomment for chrome release todo -->
<span>If you <span style="color:red; font-size:14px;">♥</span> LikeFree, please <a href="https://chrome.google.com/webstore/detail/likefree/hejgbghjhjiilikhjinpbooockoiipek" target="_blank">
leave a review</a>!</span>
<br><br>
<span><em>Found something wrong with LikeFree?</em>
<a href="mailto:[email protected]?subject=LikeFree" target="_blank">Send an email</a>!
<br>
<strong>Note: if there are issues with Facebook, email me please. LikeFree was updated for the new Facebook UI.</strong>
</span>
<br><br>
<span><em>Thank you for your support <span style="color:black; font-size:14px;">♥</span>
<span><em><a href="https://mrvivacious.github.io" target="_blank">More projects</a></em></span>
</em></span>
<br>
</div>
</div>
</body>
<script src="MagicalMessages.js"></script>
</html>