goo.gl to Details

  • /*
     * @title goo.gl to Details
     * @description goo.gl short URL to change .info URL
     * @include http://*
     * @license MIT License
     * @require 
     */
    
    (function () {
      Array.prototype.forEach.call(document.querySelectorAll('a[href*="://goo.gl/"'), function (e) {
        if (e.href.match(/^https?:\/\/goo\.gl\/(\w{4,6})/)) {
          e.href = 'https://goo.gl/#analytics/goo.gl/' + RegExp.$1 + '/all_time';
        }
      });
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2015/12/05 12:17:01 - 2015-12-05
  2. 2013/11/15 00:07:33 - 2013-11-15
  3. 2012/12/25 19:30:40 - 2012-12-25