您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Buscar por imagen y EXIF.
// ==UserScript== // @name ReverseSearch & EXIF // @namespace voxed.bot // @version 3.0 // @description Buscar por imagen y EXIF. // @author Hhaz // @match http*://*.voxed.net/* // ==/UserScript== var exifURL = "http://metapicz.com/#landing?imgsrc="; var href = $('.vox-single .vox-view .content .image a').attr('href'); $('.vox-single .vox-view .meta').prepend('<span class="report"><a href="#" target="_blank" class="exif" title="Metadatos"><i class="icon-link"></i> <span class="hide-for-small-only">EXIF</span></a></span>'); $(".exif").attr("href", exifURL+"http://www.voxed.net/"+href); var search = "https://www.google.com/searchbyimage?image_url="; var value = $('.vox-single .vox-view .content .image a').attr('href'); $('.vox-single .vox-view .meta').prepend('<span class="report"><a href="#" target="_blank" class="search" title="Buscar en Google Imágenes"><i class="icon-link"></i> <span class="hide-for-small-only">Buscar</span></a></span>'); $(".search").attr("href", search+"http://www.voxed.net/"+value);