ReverseSearch & EXIF

Buscar por imagen y EXIF.

  1. // ==UserScript==
  2. // @name ReverseSearch & EXIF
  3. // @namespace voxed.bot
  4. // @version 3.0
  5. // @description Buscar por imagen y EXIF.
  6. // @author Hhaz
  7. // @match http*://*.voxed.net/*
  8. // ==/UserScript==
  9.  
  10. var exifURL = "http://metapicz.com/#landing?imgsrc=";
  11. var href = $('.vox-single .vox-view .content .image a').attr('href');
  12.  
  13. $('.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>');
  14. $(".exif").attr("href", exifURL+"http://www.voxed.net/"+href);
  15.  
  16. var search = "https://www.google.com/searchbyimage?image_url=";
  17. var value = $('.vox-single .vox-view .content .image a').attr('href');
  18.  
  19. $('.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>');
  20. $(".search").attr("href", search+"http://www.voxed.net/"+value);