Open link in new tab button for non-coders

perfect!

If I wanted to make links to PDF files also open in a new tab, what would I add to this list?

$('a[href^="http"]').attr('target', '_blank');
$('a[href^="//"]').attr('target', '_blank');
$('a[href^="' + window.location.origin + '"]').attr('target', '_self');