forked from Grilly/RecentlyClosedTabsGoogleChromeExtension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
infonews.html
112 lines (95 loc) · 5.15 KB
/
infonews.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
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>Recently Closed Tabs - Extension Infos</title>
<link href="css/infonews.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/3dparty/jquery.js"></script>
<script language="JavaScript" src="js/infonews.js"></script>
</head>
<body onload="main()">
<div class="headerDiv"></div>
<div id="pageDiv" style="position:relative; margin: 5px;">
<div id="headerDiv"></div>
<table style="margin-top: 7px; margin-left: 7px; width: 99%;">
<tr>
<td>
<h1>Thanks for using Recently Closed Tabs</h1>
<ul>
<li><a href="https://chrome.google.com/extensions/detail/opefiliglgllmponlmoajkfbcaigocfc" target="blank">"Recently Closed Tabs" - Extensions Website</a></li>
<li><a href="http://code.google.com/p/recently-closed-tabs/" target="blank">Developer Website</a></li>
<li><a href="https://chrome.google.com/extensions/detail/opefiliglgllmponlmoajkfbcaigocfc" target="blank">Feedback</a></li>
<li><a href="http://code.google.com/p/recently-closed-tabs/issues/list" target="blank">Bugs and Issues List</a></li>
<li><a href="http://code.google.com/p/recently-closed-tabs/wiki" target="blank">Support and FAQs</a></li>
</ul>
<h2>Changelog</h2>
<h3>version 2.0</h3>
<ul>
<li>Changelog is only showed if a new major or minor version war released.</li>
<li>Complete rewrite of the code: no memory leak any more if you don't use the tabShot functionality. With tabShots set to on the extension will crash after some closed tabs (We are currently working on that problem!).</li>
</ul>
<hr>
<h3>version 1.2.7</h3>
<ul>
<li>On options page added link to the this infonews page.</li>
<li>Added links to useful websites on infonews page.</li>
</ul>
<hr>
<h3>version 1.2.6</h3>
<ul>
<li>Replaced the divs showing the urls for the popup rct elements with real tooltips.</li>
<li>Fixed showTabShot bug.</li>
</ul>
<hr>
<h3>version 1.2.5</h3>
<ul>
<li>Introduced the Google Analytics.</li>
</ul>
<hr>
<h3>version 1.2.4</h3>
<ul>
<li>Fixed date on options page.</li>
</ul>
<hr>
<h3>version 1.2.3</h3>
<ul>
<li>Added limit for recently closed tabs to 100. In a future release that you can define this number in the options.</li>
<li>Added popup to show a detailed date on the options date.</li>
<li>Removed select box and added range selector for defining the number of shown recently closed tabs element on the popup page.</li>
<li>Added popup to show the url on the popup page.</li>
</ul>
<hr>
<h3>version 1.2</h3>
<ul>
<li>Reimplemented DOM manipulation with JQuery library</li>
<li>Infos page adjusted for layout purposes.</li>
<li>Options page adjusted for layout purposes. A lot of infos about the recently closed tabs are placed here.</li>
<li>Popup page adjusted for layout purposes.</li>
<li>Added filters to the options page. Now you can add urls to the filters to exclude them from adding to the recently closed tabs list. You also have the possibility to edit the filters.</li>
<li>Added option to show or not to show the screenshots for the recently closed tabs. Think of that if you switch the screenshots on the extension will consume more memory.</li>
<li>Added <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> so that my name is written properly ;-)</li>
</ul>
<hr>
<h3>version 1.1.1.1</h3>
<ul>
<li>some annoying bugs fixed ;-)</li>
<li>basic info news page on every version change, should be optimised to get triggered on major and minor version change (ignore the 3rd and 4th part)</li>
<li>localStorage use and optimised snapshot images (resized via canvas)</li>
<li>introduced maxTabs parameter to control the length of the popup list</li>
</ul>
</td>
</tr>
</table>
<div id="footerDiv"></div>
</div>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3928511-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = 'https://ssl.google-analytics.com/ga.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
})();
</script>
</body>
</html>