YAKIUDON

    
      
  • /*
     * @title YAKIUDON
     * @description  google search url shaper via http://let.hatelabo.jp/uneco/let/gYC-yby_yIjbcQ
     * @include http://www.google.co.jp/search*
     * @include https://www.google.co.jp/search*
     * @license MIT License
     * @require 
     */
    
    // tbm http://hisame72.blog133.fc2.com/blog-entry-302.html
    //  ( via http://let.hatelabo.jp/nkoz/let/gYC-ysq6-6rrGw )
    // tbs http://d.hatena.ne.jp/ken3memo+video/20111218/1324219672 
    
    (function () {
      a = (location.hash == "") ? location.search : location.hash;
      a = a.substr(1).split('&');
      a = a.filter(function (e) {
        return /^(?:q|tbm|tbs)/.test(e);
      });
      a = a.join('&');
      a = location.pathname + '?' + a;
      history.pushState(null, null, a);
    })()
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/01/14 09:36:53 - 2013-01-14
  2. 2013/01/14 09:34:52 - 2013-01-14