Under src/Tags/StatamicTwitter.php, line 18:
The variable $count takes it's value from 'expiration'. it should take it from the parameter 'count'
Original
$count = $this->params->get('expiration', 3);
Fix
$count = $this->params->get('count', 3);
Otherwise works perfectly!