最古ツイート検索

    
      
  • /*
     * @title 最古ツイート検索
     * @description ウェブ版Twitter上でもっとも古いツイートを探す
     * @include https://twitter.com/*
     * @license MIT License
     * @javascript_url
     */
    
    (function(w, d, search_words){
    if (!search_words) return;
    var cwin = w.open('about:blank'), cdoc = cwin.document;
    cdoc.open();
    cdoc.write('<html>');
    cdoc.write('<head><title>[twSearchFirstTweet] Now searching ...</title></head>');
    cdoc.write('<body><p><img src="https://furyu-tei.sakura.ne.jp/icon/loading_icon.gif" alt="searching..." title="searching..." /></p></body>');
    cdoc.write('</html>');
    cdoc.close();
    $.getScript('https://furyu-tei.sakura.ne.jp/script/twSearchFirstTweet.js?t='+new Date().getTime(),function(){
        search_first_tweet(search_words, function(info, tweets){
        	cwin.location.href = info.search_url;
        });
    });
    })(window, document, String(document.getSelection())||prompt('search words',''));
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2014/12/28 14:41:29 - 2014-12-28
  2. 2014/12/28 03:52:12 - 2014-12-28
  3. 2014/12/28 03:45:50 - 2014-12-28
  4. 2014/12/28 02:27:05 - 2014-12-28