/*
* @title 画像検索
* @description ブックマークレットを実行したあと、画像をクリックして画像検索できます
* @include http://*
* @license MIT License
* @require
*/
for (var i = 0; i < document.images.length; i++) (function(e) { e.onclick = function() { location.href = 'http://www.google.co.jp/searchbyimage?image_url=' + encodeURIComponent(e.src) } })(document.images[i]); alert('検索したい画像をクリックしてください');