No disabled

try to take over the world!

  1.  
  2. // ==UserScript==
  3. // @name No disabled
  4. // @namespace http://tampermonkey.net/
  5. // @version 0.1
  6. // @description try to take over the world!
  7. // @author You
  8. // @match *://*/*
  9. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  10. // @run-at document-idle
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. setTimeout(function () {
  18. console.log("No disabled now execute");
  19. console.log($("input"));
  20. $("input").each(function( index ) {
  21. console.log( index + ": " + $( this ).text() );
  22. $(this).removeAttr("disabled");
  23. });
  24.  
  25.  
  26. console.log($("textarea"));
  27. $("textarea").each(function( index ) {
  28. console.log( index + ": " + $( this ).text() );
  29. $(this).removeAttr("disabled");
  30. });
  31. console.log("No disabled complete executed");
  32. }, 4500);
  33. })();
  34.  
  35.  
  36.