URI dec->enc

    
      
  • /*
     * @title url dec->enc
     * @description prompt decodeURIComponent and encodeURIComponent(if needed)
     * @include http://*
     * @include https://*
     * @license MIT License http://opensource.org/licenses/MIT
     * @require 
     */
    
    (function () {
        'url dec->enc';
        var url = prompt('str | %');
        if (!url) return;
    
        var plane = decodeURIComponent(url);
        if (!prompt('decoded:\n' + plane, plane)) return;
    
        prompt('encoded:\n', encodeURIComponent(plane));
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/06/14 00:50:05 - 2013-06-14
  2. 2013/06/14 00:49:43 - 2013-06-14
  3. 2013/06/14 00:41:07 - 2013-06-14