forked from thunderbird/extension-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (93 loc) · 3.71 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Extension Finder</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section>
<h1>
Find alternatives to no longer maintained Thunderbird extensions
</h1>
<input id="searchInput" class="search" disabled placeholder="loading data...">
<div class="smallprint">
<label><input type="checkbox" id="exactMatch" value="value">Show only exact matches.</label>
</div>
<div class="smallprint" id="replacementsListIntro" hidden="true">
<p>Following are recommended replacements for no longer maintained extensions that have suitable alternatives.</p>
</div>
<ul class="out">
<template id="search-result-addon">
<li>
<div class="legacy">
<b class="legacy-name"></b>
suggested alternative:
</div>
<div class="alternative">
<img class="icon">
<div class="info">
<h3 class="alt-name"></h3>
<p class="alt-desc"></p>
<div class="byline">by <span class="alt-author"></span></div>
</div>
<div class="cta">
<a class="button">Learn More</a>
</div>
</div>
</li>
</template>
<template id="search-result-general">
<li>
<div class="legacy">
<b class="legacy-name"></b>
suggested alternative:
</div>
<div class="alternative noslug">
<div class="info">
<h3 class="alt-name"></h3>
<div class="alt-desc"></div>
</div>
<div class="cta">
<a class="button">Learn More</a>
</div>
</div>
</li>
</template>
<template id="search-result-empty">
<li class="noresults">
<h2>
No results found for “<span class="query"></span>”
</h2>
<a class="button">search addons.thunderbird.net ➡</a>
</li>
</template>
<template id="search-result-compat">
<li class="noresults">
<h2>
The add-on “<span class="query"></span>” seems to be maintained and is compatible with Thunderbird <span class="usedVersion"></span>.
</h2>
<a class="button">Show Add-on</a>
<div class="help">
<p>Directly after updating Thunderbird, it is however possible that the add-on is still marked as incompatible. Either the add-on manager did not update the displayed information after the automatic add-on update (re-opening the add-on manger should fix that), or the automatic update check failed due to a connection timeout to addons.thunderbird.net.</p>
<p>Manually search for add-on updates by clicking on the gear menu in the add-on manager as shown below.</p>
<img src="update-addons.png"/>
</div>
</li>
</template>
<template id="search-result-notyetcompat">
<li class="noresults">
<h2>
The add-on “<span class="query"></span>” seems to be maintained, but a version for Thunderbird <span class="usedVersion"></span> has not yet been released.
</h2>
<a class="button">Show Add-on</a>
</li>
</template>
</ul>
</section>
<script src="lunr.min.js"></script>
<script src="script.js"></script>
</body>
</html>