c..

    @@ -3,8 +3,16 @@ * @description up dir * @include http://* * @license MIT License + * @private */ -a=location.pathname.split('/'); -if(a.pop()=='')a.pop(); -location.pathname=a.join('/'); +location.search=''; +if(location.pathname!='/') { + a=location.pathname.split('/'); + if(a.pop()=='')a.pop(); + location.pathname=a.join('/'); +}else{ + b=location.hostname.split('.'); + b.shift(); + location.hostname=b.join('.'); +}
  • /*
     * @title cd ..
     * @description up dir
     * @include http://*
     * @license MIT License
     * @private
     */
    
    location.search='';
    if(location.pathname!='/') {
      a=location.pathname.split('/');
      if(a.pop()=='')a.pop();
      location.pathname=a.join('/');
    }else{
      b=location.hostname.split('.');
      b.shift();
      location.hostname=b.join('.');
    }
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2012/03/27 23:51:38 - 2012-03-27
  2. 2012/03/27 14:45:49 - 2012-03-27
  3. 2012/03/27 13:13:01 - 2012-03-27
  4. 2012/03/27 13:05:04 - 2012-03-27
  5. 2012/03/27 12:42:41 - 2012-03-27