5%up

  • /*
     * @title 5%up
     * @description 5%up selected text
     * @include http://*
     * @license MIT License
     * @require
     */
    
    var selection
          = window.getSelection   ? window.getSelection()
          : document.getSelection ? document.getSelection()
          : document.selection    ? document.selection.createRange().text
          :                         0
          ;
    alert(parseInt( selection.getRangeAt(0) )*1.05);
  • 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