-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
82 lines (60 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<style>
a {
color: #ff6600;
transition: .5s;
-moz-transition: .5s;
-webkit-transition: .5s;
-o-transition: .5s;
font-family: 'Muli', sans-serif;
}
a:hover {
text-decoration: underline
}
h1 {
padding-bottom: 15px
}
h1 a {
font-family: 'Open Sans Condensed', sans-serif;
font-size: 48px;
color: #333;
}
h1 a:hover {
color: #ff6600;
text-decoration: none;
}
p {
color: #333;
font-family: 'Muli', sans-serif;
margin-bottom: 15px;
}
a.more-link {
color: white;
font-weight: bold;
font-size: 14px;
font-family: Arial, Helvetica, sans-serif;
padding: 3px 10px;
background-color: #ff6600;
border-radius: 5px;
float: right;
}
a.more-link:hover {
text-decoration: none;
background-color: #666;
border-radius: 0px;
}
</style>
<button id="go-to-options">Go to options</button>
</head>
<body>
<p>Press your custom hotkey when an article is selected on Feedly to open the link in the background. Hotkey defaults to ';' <br><br>
Works best with 'j' and 'k' shortcuts to go forward and backward - and 'm' to mark as read/unread.</p>
<h2>If you like the extension please support the developer:</h2>
<a href='https://ko-fi.com/R5R2386H0' target='_blank'><img height='36' style='border:0px;height:36px;'
src='https://cdn.ko-fi.com/cdn/kofi3.png?v=2' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
<br>
<script src="popup.js"></script>
</body>
</html>