Remove e-hentai all image titles. They will not show on mouse hover anymore.
// ==UserScript==
// @name Remove e-hentai image title
// @namespace Remove e-hentai image title
// @version 1.4
// @description Remove e-hentai all image titles. They will not show on mouse hover anymore.
// @author fmnijk
// @match https://e-hentai.org/*
// @match https://exhentai.org/*
// @icon https://www.google.com/s2/favicons?domain=e-hentai.org
// @require https://code.jquery.com/jquery-3.6.0.min.js
// @grant none
// @run-at document-end
// @license MIT
// ==/UserScript==
$(document.body).on("mouseover", function(){
$("img").each(function(){
$(this).attr("title","");
});
})