Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ilanvivanco/showdottedpasswords
Bookmarklet that let you see the passwords entered in web forms.
https://github.com/ilanvivanco/showdottedpasswords
Last synced: about 1 month ago
JSON representation
Bookmarklet that let you see the passwords entered in web forms.
- Host: GitHub
- URL: https://github.com/ilanvivanco/showdottedpasswords
- Owner: IlanVivanco
- Created: 2015-10-30T12:17:15.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-30T12:36:14.000Z (about 9 years ago)
- Last Synced: 2023-03-07T20:16:05.293Z (almost 2 years ago)
- Size: 227 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# showDottedPasswords
Bookmarklet that let you see the passwords entered in web forms. It works with passwords the browser remembers but you dont. :wink:![Dotted Password Example](gmail-example.png)
#### Bookmarklet
Add the bookmarklet by selecting and dragging it to your bookmarks bar. Then go to the page that shows the dotted password and click the bookmark to show it.```javascript
javascript:!function(){for(var nodeList=document.getElementsByTagName("input"),iterator=0,node=null;node=nodeList[iterator++];)"password"==node.getAttribute("type")&&node.setAttribute("type","text");}();
```