MD5 Image hiding
[4Free-FSE.git] / Visible-Password.user.js
blob9c3db2ac2a1e1e11f844b3e8e6a482e56f0a674e
1 // ==UserScript==
2 // @name         Visible Password
3 // @namespace    http://tampermonkey.net/
4 // @version      0.5
5 // @description  try to take over the world!
6 // @author       You
7 // @match http://boards.4chan.org/*
8 // @match https://boards.4chan.org/*
9 // @include https://boards.4chan.org/*
10 // @include http://boards.4chan.org/*
11 // @updateURL    https://github.com/ECHibiki/4chan-UserScripts/raw/master/Visible-Password.user.js
12 // @downloadURL  https://github.com/ECHibiki/4chan-UserScripts/raw/master/Visible-Password.user.js
13 // ==/UserScript==
16 Displays your 4chan password in an inputbox.
17 Top left is the post password, Bottom right is the delete password.
18 Edit the input boxes to change them.
20 Note: some 4chan boards don't allow custom post passwords. May require cookie manipulation, but this has not yet been tested
22 (function() {
24     document.getElementById("postPassword").setAttribute("type", "");
25     document.getElementById("postPassword").value = document.getElementById("postPassword").value;
27     document.getElementById("delPassword").setAttribute("type", "");
28     document.getElementById("delPassword").value = document.getElementById("delPassword").value;
29 })();