以前のツイート表示

  • /*
     * @title 以前のツイート表示
     * @description Twitterの個別ツイート(https://twitter.com/<name>/status/<id>)以前のタイムライン約1日分を表示
     * @include https://twitter.com/*
     * @license MIT License
     * @javascript_url
     */
    
    (function (i, u, s, c, q, w) {
        w = window.open('https://twitter.com/search?q=' + encodeURIComponent('from:' + u + ' max_id:' + i + ' since:' + c(s - 3600 * 24)) + '&f=realtime');
        c = function ($) {
            $ = (function () {
                try {
                    return w.$
                } catch (e) {
                    return 0
                }
            })();
            if (!$ || !(q = $("li[data-item-id='" + i + "']"))[0]) {
                setTimeout(c, 100)
            } else {
                q.css('background', 'gold')
            }
        };
        c()
    })($('div.opened-tweet').attr('data-item-id'), $('div.opened-tweet').attr('data-screen-name'), parseInt($('div.opened-tweet span[data-time]').attr('data-time')), function (s, d) {
        d = new Date(1000 * s);
        return d.getUTCFullYear() + '-' + (1 + d.getUTCMonth()) + '-' + d.getUTCDate()
    })
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2014/03/21 19:20:44 - 2014-03-21
  2. 2014/03/21 19:17:25 - 2014-03-21
  3. 2014/03/21 19:17:08 - 2014-03-21