ページに表示されてるツイートを一括ふぁぼ
/* * @title all the favorite * @description ページに表示されてるツイートを一括ふぁぼ * @license MIT License * @require jquery */ (function(){ $(".favorite").each(function(){ $(this).trigger("click"); }); });