Google images hide buttons

Hide image buttons when mouse is not over

2022-06-22 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

// ==UserScript==
// @name           Google images hide buttons
// @name:es        Google imágenes esconder botones
// @description    Hide image buttons when mouse is not over
// @description:es Esconde los botónes de la imagen cuando el mouse no está encima
// @version        0.1
// @author         IgnaV
// @match          https://www.google.com/search?*
// @icon           http://google.com/favicon.ico
// @namespace      http://tampermonkey.net/
// @license        MIT
// @grant          GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle('.dFMRD:not(:hover) a.hm60ue { opacity: 0; }');
    GM_addStyle('.dFMRD:not(:hover) div.mWagE.fDqwl { opacity: 0; }');
})();