/*
* @title URL正規化
* @description Pathtraq APIを用いてURLを正規化します。
* @include http://*
* @license MIT License
* @require
*/
(function(url) {
var base = "http://api.pathtraq.com/normalize_url2?url=";
window.location = base + encodeURI(url);
})(window.location);