您需要先安装一个扩展,例如 篡改猴、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 2.1 // @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 // @grant none // @run-at document-end // @license MIT // ==/UserScript== document.body.onmouseover = function() { document.querySelectorAll('img').forEach(function(img) { if (img.hasAttribute('title')) { img.setAttribute('title', ''); } }); document.querySelectorAll('div').forEach(function(img) { if (img.hasAttribute('title')) { img.setAttribute('title', ''); } }); };