非公開 Twitter Search

    @@ -1,9 +1,11 @@ /* * @title Twitter Search - * @description Search Twitter for selected text. + * @description Search Twitter for selected text / present URL. * @include http://* * @license MIT License */ -window.location='http://search.twitter.com/search.atom?q='+encodeURIComponent(document.location.href.replace(/https?:\/\//, '')); +var s = document.getSelection().toString(); +window.location='http://search.twitter.com/search.atom?q=' + + encodeURIComponent( s.length == 0 ? document.location.href.replace(/https?:\/\//, '') : s);
  • /*
     * @title Twitter Search
     * @description Search Twitter for selected text / present URL.
     * @include http://*
     * @license MIT License
     */
    
    
    var s = document.getSelection().toString();
    window.location='http://search.twitter.com/search.atom?q='
      + encodeURIComponent( s.length == 0 ? document.location.href.replace(/https?:\/\//, '') : s);
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/10/09 00:48:27 - 2013-10-09
  2. 2013/02/07 15:46:53 - 2013-02-07
  3. 2013/02/07 15:42:32 - 2013-02-07
  4. 2013/02/07 15:14:01 - 2013-02-07