Remove e-hentai image title

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

Ajankohdalta 17.1.2022. Katso uusin versio.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Remove e-hentai image title
// @namespace    Remove e-hentai image title
// @version      1.2
// @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
// @license      MIT
// ==/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","");
});