您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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",""); });