Advertisement
Guest User

YouTube Thumbnail Image Search Bookmarklet

a guest
Apr 8th, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. javascript: (function() {
  2.     m = 'https://images.google.com/searchbyimage?site=search&image_url=' + document.querySelector("meta[property='og:image']").content;
  3.     w = window.open(m, 'addwindow');
  4.     setTimeout(function() {
  5.         w.focus();
  6.     }, 250);
  7. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement