Visible Password

try to take over the world!

  1. // ==UserScript==
  2. // @name Visible Password
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.4
  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. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. document.getElementById("postPassword").setAttribute("type", "");
  16. document.getElementById("postPassword").value = "_oZfG5xpuTkOsw0qEbWVtImzL9YrQ6dNg";
  17. // Your code here...
  18. document.getElementById("delPassword").setAttribute("type", "");
  19. document.getElementById("delPassword").value = "_oZfG5xpuTkOsw0qEbWVtImzL9YrQ6dNg";
  20. })();