Twivia

  • /*
     * @title Twivia
     * @description show tweeted client on Twitter
     * @include http://twitter.com/*
     * @license MIT License http://nrm.mit-license.org/2012
     * @require
     */
    
    (function(){
        var id;
        if (!(id = (/https?:\/\/twitter\.com\/[\w-]+\/status\/(\d+)/.exec(location.href) || [])[1]) ||
            !jQuery) {
            return;
        }
    
        jQuery.ajax({
            type:     'GET',
            url:      'https://api.twitter.com/1/statuses/show.json?callback=?',
            dataType: 'jsonp',
            data: {
                id: id //location.pathname.split('/').pop()
            }
        }).
        done(function (res) {
            var parent;
            if (!(parent = document.querySelector('.metadata'))) return;
            
            parent.appendChild(document.createTextNode(' · via '));
    
            var container = document.createElement('span');
            container.innerHTML = res.source;
    
            parent.appendChild(container);
        });
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2012/12/31 02:12:51 - 2012-12-31
  2. 2012/12/31 01:51:32 - 2012-12-31