/*
* @title Twitter 画像説明文表示
* @description Twitter上の画像の説明文を表示(参考:http://japanese.engadget.com/2016/03/29/twitter-420-android-ios/)
* @include https://twitter.com/*
* @license MIT License
* @javascript_url
*/
$( '.tweet' ).each( function () {
var tweet = $( this );
tweet.find( '.AdaptiveMedia-photoContainer img' ).each( function () {
var text = this.alt;
if ( text ) {
tweet.find( '.js-tweet-text' ).append( '\n' + text );
}
} );
} );