/*
* @title QR coder
* @description QRコードつくる。
* @include http://*
* @license MIT License
* @require
*/
var url = prompt('input url', location.href);
if (url) {
location.href = 'http://chart.apis.google.com/chart?chs=200x200&cht=qr&chl='+encodeURIComponent(url);
}
void(0);