Remove e-hentai image title

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

La data de 06-05-2021. Vezi ultima versiune.

// ==UserScript==
// @name         Remove e-hentai image title
// @namespace    Remove e-hentai image title
// @version      1.0
// @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/*
// @require      https://code.jquery.com/jquery-3.6.0.min.js
// @grant        none
// ==/UserScript==

$("img").hover(function(){
    // Get the current title
    var title = $(this).attr("title");
    // Store it in a temporary attribute
    $(this).attr("tmp_title", title);
    // Set the title to nothing so we don't see the tooltips
    $(this).attr("title","");
});