Googleイメージの画像をキャッシュではなく元のURLから取得したり、クリックしたら直接画像に飛ぶようにするGreasemonkeyスクリプト
Googleイメージの検索結果から、元の画像を得るため何度もクリックしなきゃいけないのは面倒。
// ==UserScript== // @name GoogleImagesOk // @namespace http://d.hatena.ne.jp/javascripter/ // @include http://images.google.co.jp/* // ==/UserScript== Array.forEach(document.getElementById('ImgContent').getElementsByTagName('img'), function(img){ img.parentNode.href=img.src=img.src.replace(/^http:\/\/.*?(?=http:\/\/)/,''); });