$(document).ready(function() {

    $('a.ext').each(function(e){
        $(this).attr('target', '_blank');
    });
});

