-
Notifications
You must be signed in to change notification settings - Fork 21
/
changelog.html
108 lines (98 loc) · 3.52 KB
/
changelog.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>ekill - changes</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/bootstrap-treeview.min.css" />
<link rel="stylesheet" href="css/options.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-2">
<img id="logo" class="img-responsive" src='./skull-and-bones.svg' alt="404" />
<h3 class="text-center">ekill</h3>
<h4 id="version" class="text-center"></h4>
</div>
<div class="col-md-8">
<h1>Changelog</h1>
<h2 class="version-header" data-version="1.9">1.9</h2 class="version-header">
<ul>
<li>Adds support for killing content that is in iframes.<br>This
addition is primarily intended to target misc. chat widgets.</li>
</ul>
<h2 class="version-header" data-version="1.8">1.8</h2 class="version-header">
<ul>
<li>
Changes the default hot-key from Ctrl+k to Ctrl+Shift+k.
<br>
<br>
The reason for this change is in the following issues:
<ul>
<li>
<a href="https://github.com/rhardih/ekill/issues/23">https://github.com/rhardih/ekill/issues/23</a>
</li>
<li>
<a href="https://github.com/rhardih/ekill/issues/26">https://github.com/rhardih/ekill/issues/26</a>
</li>
</ul>
</li>
</ul>
<h2 class="version-header" data-version="1.7">1.7</h2 class="version-header">
<ul>
<li>
Adds a kill count badge to the extension icon.
</li>
</ul>
<h2 class="version-header" data-version="1.6">1.6</h2 class="version-header">
<ul>
<li>
Adds the <a href="options.html">Grudge feature</a>.
</li>
<li>
Adds options page to control Grudge.
</li>
<li>
Adds changelog notifications on version upgrades.
</li>
</ul>
<h2 class="version-header" data-version="1.5">1.5</h2 class="version-header">
<ul>
<li>
Adds light icons for Firefox dark theme.
</li>
</ul>
<h2 class="version-header" data-version="1.4">1.4</h2 class="version-header">
<ul>
<li>
Adds support for Firefox.
</li>
</ul>
<h2 class="version-header" data-version="1.3">1.1 - 1.3</h2 class="version-header">
<ul>
<li>
Introduces ability to toggle on/off, as well as dismiss with Esc
key.
</li>
<li>
Permissions narrowed to *activeTab* only.
</li>
<li>
Targets anything with *role=button*.
</li>
</ul>
<h2 class="version-header" data-version="1.0">1.0</h2 class="version-header">
<ul>
<li>Initial version.</li>
</ul>
</div>
</div>
<div>
<script type="text/javascript" src="js/jquery.slim.min.js"></script>
<script type="text/javascript" src="js/bootstrap-treeview.min.js"></script>
<script type="text/javascript" src="js/testable.js"></script>
<script type="text/javascript" src="js/changelog.js"></script>
</div>
</body>
</html>