/*
* @title Googleのキャッシュで開く
* @description Googleのキャッシュで開きます。
* @include http://*
* @license public domain
* @require
*/
(function()
{
var uri = location.href;
if (uri)
{
window.open('http://webcache.googleusercontent.com/search?hl=ja&q=cache:' + escape(uri));
}
})();