blob: 42c60e318fdd47fe73194702f0a672a98e4482d0 (
plain)
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
|
<html>
<head>
<title>Vimium Search Completion</title>
<!-- We re-use some styling from the options page, so that the look and feel here is similar -->
<link rel="stylesheet" type="text/css" href="options.css">
<script src="content_script_loader.js"></script>
<script type="text/javascript" src="../lib/settings.js"></script>
<script src="completion_engines.js"></script>
</head>
<body>
<div id="wrapper">
<header>Vimium Search Completion</header>
<p>
Search completion is available for custom search engines whose search URL matches one of Vimium's
built-in completion engines. Search completion is not available for the default search engine.
</p>
<p>
Custom search engines are configured on the <a href="options.html">options</a> page.
</p>
<header>Available Completion Engines</header>
<p>
The following completion engines are available.
<dl id="engineList">
{{{ENGINES}}}
</dl>
</p>
</div>
</body>
</html>
|