2 // @name Visible Password
3 // @namespace http://tampermonkey.net/
5 // @description try to take over the world!
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
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
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;