// ==UserScript==
// @name      Block Target Blank
// @namespace http://opera.higeorange.com/
// @include   *
// ==/UserScript==

(function() {
    var a = document.evaluate('//a[@target="_blank"]', document, null,
        7, null);
    for(var i = 0, l = a.snapshotLength; i < l; i++) {
            a.snapshotItem(i).removeAttribute('target');
    }
})();
