Google images hide buttons

Hide image buttons when mouse is not over

  1. // ==UserScript==
  2. // @name Google images hide buttons
  3. // @name:es Google imágenes esconder botones
  4. // @description Hide image buttons when mouse is not over
  5. // @description:es Esconde los botónes de la imagen cuando el mouse no está encima
  6. // @version 0.2
  7. // @author IgnaV
  8. // @include https://www.google.*/search?*
  9. // @icon http://google.com/favicon.ico
  10. // @namespace http://tampermonkey.net/
  11. // @license MIT
  12. // @grant GM_addStyle
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17.  
  18. GM_addStyle('.dFMRD:not(:hover) a.hm60ue { opacity: 0; }');
  19. GM_addStyle('.dFMRD:not(:hover) div.mWagE.fDqwl { opacity: 0; }');
  20. })();