-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (44 loc) · 1.6 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de-DE" lang="de-DE">
<head>
<meta charset="UTF-8" />
<title>bruppa</title>
<link rel="stylesheet" href="extensions/css/filter.css">
<link rel="stylesheet" href="extensions/css/rainbow/theme.css">
<meta name="language" content="de-DE" />
<meta name="browserUpdate" content="prototype/bruppa.html">
</head>
<body>
<div class="config">
<div class="filterManager">
<select name="browser" id="browser">
<option value="ie">Internet Explorer</option>
<option value="ch">Chrome</option>
<option value="chM">Chrome Mobile</option>
<option value="ff">Firefox</option>
<option value="sf">Safari</option>
<option value="sfM">Safari Mobile</option>
<option value="op">Opera</option>
</select>
<input value="add" id="addFilter" type="button">
</div>
</div>
<div class="script">
<div id="js_filter" class="filterList"></div>
<pre id="output" class="output" data-language="javascript"></pre>
</div>
<h2>How to use:</h2>
<ol>
<li>
First you have to place a Meta-Tag with the Name "browserUpdate" in your Head area. The content of the Meta-Tag has to be the URL to the Browser-Update-Page.
</li>
<li>
Now you only have to place the generated js-code in your js-file or in a separate one.
</li>
</ol>
<script type="text/javascript" src="extensions/js/db.js"></script>
<script type="text/javascript" src="extensions/js/filter.js"></script>
<script type="text/javascript" src="extensions/js/uaOutput.js"></script>
<script type="text/javascript" src="extensions/js/rainbow-custom.min.js"></script>
</body>
</html>