Remove e-hentai image title

Remove e-hentai all image titles. They will not show on mouse hover anymore.

Verzia zo dňa 17.01.2022. Pozri najnovšiu verziu.

  1. // ==UserScript==
  2. // @name Remove e-hentai image title
  3. // @namespace Remove e-hentai image title
  4. // @version 1.2
  5. // @description Remove e-hentai all image titles. They will not show on mouse hover anymore.
  6. // @author fmnijk
  7. // @match https://e-hentai.org/*
  8. // @match https://exhentai.org/*
  9. // @icon https://www.google.com/s2/favicons?domain=e-hentai.org
  10. // @require https://code.jquery.com/jquery-3.6.0.min.js
  11. // @grant none
  12. // @license MIT
  13. // ==/UserScript==
  14.  
  15. $("img").hover(function(){
  16. // Get the current title
  17. var title = $(this).attr("title");
  18. // Store it in a temporary attribute
  19. $(this).attr("tmp_title", title);
  20. // Set the title to nothing so we don't see the tooltips
  21. $(this).attr("title","");
  22. });
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.