URI dec->enc

    @@ -1,6 +1,6 @@ /* - * @title url dec->enc - * @description prompt decodeURIComponent and encodeURIComponent(if needed) + * @title URL dec->enc + * @description prompt URI of decoded and encoded(if needed) * @include http://* * @include https://* * @license MIT License http://opensource.org/licenses/MIT @@ -8,12 +8,14 @@ */ (function () { - 'url dec->enc'; + 'http://let.hatelabo.jp/noromanba/let/gYC-x-fjlK2kMQ'; + var url = prompt('str | %'); if (!url) return; var plane = decodeURIComponent(url); if (!prompt('decoded:\n' + plane, plane)) return; - prompt('encoded:\n', encodeURIComponent(plane)); -})(); + var encoded = encodeURIComponent(plane); + prompt('encoded:\n' + encoded, encoded); +})();
  • /*
     * @title URL dec->enc
     * @description prompt URI of decoded and encoded(if needed)
     * @include http://*
     * @include https://*
     * @license MIT License http://opensource.org/licenses/MIT
     * @require 
     */
    
    (function () {
        'http://let.hatelabo.jp/noromanba/let/gYC-x-fjlK2kMQ';
    
        var url = prompt('str | %');
        if (!url) return;
    
        var plane = decodeURIComponent(url);
        if (!prompt('decoded:\n' + plane, plane)) return;
    
        var encoded = encodeURIComponent(plane);
        prompt('encoded:\n' + encoded, encoded);
    })();
    
  • 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