To remove the voting stars from feeds and pages, open post-star-rating.php and change the function
function PSR_show_voting_stars_filter($text) {
global $PSR;
return $text . $PSR->getVotingStars();
}
to
function PSR_show_voting_stars_filter($text) {
global $PSR;
if ( !is_feed() && !is_page() )
return $text . $PSR->getVotingStars();
}