Sitedeki tüm dış linkleri ayrı sekmede açan bir kod var.Bu kod adsense için zararlı olur mu merak ediyorum ?

kodunu aratıp buluyoruz. Bulduğumuz kodun hemen üzerine aşağıdaki kodları yapıştırıyoruz.

<script></script>
<script>
$(document).ready(function() {
$("a[href^='http://']").each(
function(){
if(this.href.indexOf(location.hostname) == -1) {
$(this).attr('target', '_blank');
}
}
);
$("a[href^='https://']").each(
function(){
if(this.href.indexOf(location.hostname) == -1) {
$(this).attr('target', '_blank');
}
}
);

});
</script>