-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (30 loc) · 840 Bytes
/
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
<html>
<head>
<style>
html {
font: 20px Avenir, "Lucida Grande", Helvetica, Arial, sans-serif;
}
a {
color: #FFF;
background: rgb(97, 202, 37);
display: inline-block;
padding: 10px;
text-decoration: none;
font-weight: bold;
font:1.2em;
border-radius: 5px;
}
</style>
</head>
<body>
<h1>
Showpwd
</h1>
<p>Easily turn input password to text</p>
<p>
<a href="javascript:(function () {var inputs = document.querySelectorAll("input[type=password]"), l=inputs.length;while(l--){inputs[l].addEventListener("dblclick", toText);}function toText () {this.type = 'text'}}())">showpwd</a>
<= move this to your bookmarks bar
</p>
<p><strong>Click on your bookmark, then doubleclick on the password you want to show</strong></p>
</body>
</html>