/*
* @title twitter.com ツイートURL抜き出し
* @description twitter.com で今見ているツイートのURL一覧を抜き出して一気にコピーできる状態にします。検索結果の保存などにどうぞ。
* @include https://twitter.com
* @license MIT License
* @require
*/
var tweet_links = [];
var tweet_texts = document.createElement("textarea");
$(".tweet-timestamp").each(function(){
tweet_links.push(this.href);
});
tweet_texts.innerHTML = tweet_links.join("\n");
// 無限スクロールなので、とりえあずトレンドのコンテナの中にぶちこむ
$(".trends-container").append($(tweet_texts));