1024FormShowImage

123

  1. // ==UserScript==
  2. // @name 1024FormShowImage
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 123
  6. // @author You
  7. // @match http://t66y.com/htm_data/*.html
  8. // @icon https://www.google.com/s2/favicons?domain=t66y.com
  9. // @require https://code.jquery.com/jquery-3.6.0.min.js
  10. // @grant none
  11. // @run-at document-end
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. $("img").each(function()
  16. {
  17. if($(this).attr("ess-data")){
  18. //$(this).html('<img src="' + $(this).attr("ess-data") + '">');$(".myImg").attr('src',"hackanm.gif");
  19. $(this).attr('src',$(this).attr("ess-data"));
  20. }
  21. console.log($(this).attr("ess-data"))
  22.  
  23. });
  24.  
  25. })();