Hacker News new | past | comments | ask | show | jobs | submit login

I will help you, despite your snarkiness :)

Just use greasemonkey or tampermonkey and a script like this:

    var a = document.getElementsByTagName("a"); 
    for (i=0;i<a.length;i++) { 
        if (a[i].target="_blank") { 
            a[i].target="_self" 
        }                        
    }
It should work for the majority of cases. You should be able to tweak it to handle any exceptions.



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: