Bottom link bug
[4Free-FSE.git] / Visible-Password.user.js
blob8b8d0b83f0de8e5f34da995c59680f1267e7a4e5
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==
15 (function() {
16 'use strict';
17 document.getElementById("postPassword").setAttribute("type", "");
18 document.getElementById("postPassword").value = document.getElementById("postPassword").value;
19 // Your code here...
20 document.getElementById("delPassword").setAttribute("type", "");
21 document.getElementById("delPassword").value = document.getElementById("delPassword").value;
22 })();