Remove e-hentai image title

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.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/*
// @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) {
        img.setAttribute('title', '');
    });
};