canonical

    
      
  • /*
     * @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);
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2014/06/04 18:51:05 - 2014-06-04