ReverseSearch & EXIF

Buscar por imagen y EXIF.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey to install this script.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

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