您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide image buttons when mouse is not over
当前为
// ==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.2 // @author IgnaV // @include https://www.google.*/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; }'); })();