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.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","");
});