5%up

    
      
  • /*
     * @title 選択範囲を取得
     * @description  選択範囲を取得
     * @include http://*
     * @license MIT License
    
    */
    
    (function(){
      var selection
          = window.getSelection   ? window.getSelection()
          : document.getSelection ? document.getSelection()
          : document.selection    ? document.selection.createRange().text
          :                         0
          ;
      console.log(encodeURIComponent(selection));
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2012/03/10 09:18:39 - 2012-03-10
  2. 2012/03/10 08:57:28 - 2012-03-10