ReverseSearch & EXIF

Buscar por imagen y EXIF.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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);