Deleted typscript files
[4Free-FSE.git] / Visible-Password.user.js
blob6137c973d4b34721453dc63b2e39c313f75d7157
1 // ==UserScript==
2 // @name Visible Password
3 // @namespace http://tampermonkey.net/
4 // @version 0.5
5 // @description View post and delete passwords
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/4chanX-FSE/raw/master/Individual%20Packages/Visible-Password.user.js
12 // @downloadURL https://github.com/ECHibiki/4chanX-FSE/raw/master/Individual%20Packages/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 })();