-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (85 loc) · 4.06 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
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="/WifiXmlToQR/assets/css/style.css?v=c8545bc0c088cd71a494a5f32ec0b90d20c332ae">
<link rel="stylesheet" type="text/css" href="/WifiXmlToQR/assets/css/print.css" media="print">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Begin Jekyll SEO tag v2.5.0 -->
<title>WifiXmlToQR | userscript for greasemonkey to get wifi networks from lastpass exports to QR code</title>
<meta name="generator" content="Jekyll v3.7.4" />
<meta property="og:title" content="WifiXmlToQR" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="userscript for greasemonkey to get wifi networks from lastpass exports to QR code" />
<meta property="og:description" content="userscript for greasemonkey to get wifi networks from lastpass exports to QR code" />
<link rel="canonical" href="http://simonsso.github.io/WifiXmlToQR/" />
<meta property="og:url" content="http://simonsso.github.io/WifiXmlToQR/" />
<meta property="og:site_name" content="WifiXmlToQR" />
<script type="application/ld+json">
{"headline":"WifiXmlToQR","@type":"WebSite","url":"http://simonsso.github.io/WifiXmlToQR/","name":"WifiXmlToQR","description":"userscript for greasemonkey to get wifi networks from lastpass exports to QR code","@context":"http://schema.org"}</script>
<!-- End Jekyll SEO tag -->
</head>
<body>
<script type="text/javascript">
function GM_registerMenuCommand(dummy0,dummy1,dummy2){
// alert("Dummy System load callback");
}
</script>
<script type="text/javascript" src="qrcodejs/qrcode.js"></script>
<script type="text/javascript" src="WifiXmlToQR.user.js"></script>
<script type="text/javascript">
function validateform(){
return(false);
}
function go(){
var datastring;
datastring=document.forms["inputbox"]["xyz"].value;
genqr(datastring,options);
};
var options={};
</script>
<div id="container">
<div class="inner">
<header>
<h1>WifiXmlToQR</h1>
<h2>userscript for greasemonkey to get wifi networks from lastpass exports to QR code</h2>
</header>
<section id="downloads" class="clearfix">
</section>
<section id="main_content">
<p>userscript for greasemonkey to get wifi networks from lastpass exports to QR code</p>
<p>install as userscript in greasemonkey, log in in last pass export passwords,
select an xml corsponding to a wifi network you have saved. A qr code can be
generaded for the network by selecting the user command from the menu.</p>
<p>Usage:</p>
<p>Log in to last pass and export your password <a href="https://lastpass.com/export.php?&hp=0">https://lastpass.com/export.php?&hp=0</a> then find the network you like to export mark the corsponding xml structure and run wifi to xml in greasemonkey user script menu.</p>
<form action=false name="inputbox" onSubmit="return validateform();">
Width: <input type="number" min=1 size=4 name=x onchange="options.width=parseInt(x.value);">
Height: <input type="number" min=1 size=4 name=y onchange="options.height=parseInt(y.value);">
<br/>
<input name="xyz" size=80 type="text" value="WIFI:S:My Net;T:WPA;P:banana;"/>
<input type="button" onclick="go();" value="generate"/>
</form>
<p><a href="http://simonsso.github.io/WifiXmlToQR/offlineexample.html">offline example</a></p>
<p>Geting the Source code:</p>
<p>Download code and dependencies from github with https
<pre>
git clone --recursive https://github.com/simonsso/WifiXmlToQR.git
</pre>
or with ssh
<pre>
git clone --recursive [email protected]:simonsso/WifiXmlToQR.git
</pre>
</p>
</section>
<footer>
<a href="https://github.com/simonsso/WifiXmlToQR">Project page at github</a>
WifiXmlToQR is maintained by <a href="https://github.com/simonsso">simonsso</a><br>
</footer>
</div>
</div>
</body>
</html>