/*
* @title canonical
* @description log canonical url
* @include http://*
* @include https://*
* @contributor noromanba
* @license MIT License http://opensource.org/licenses/MIT
* @javascript_url
*/
// https://gist.github.com/noromanba/d730ccf3ae5e6916cd60
(function () {
var url = (document.head.querySelector('meta[property="og:url"][content]') || {}).content ||
(document.head.querySelector('link[rel="canonical"][href]') || {}).href ||
location.href;
if (console && console.log) console.log(url);
})();