Greasy Fork is available in English.

Yandex open results in same tab

Remove 'target=_blank' on Yandex search results page

// ==UserScript==
// @name         Yandex open results in same tab
// @namespace    https://greasyfork.org/users/59372
// @version      0.3
// @description  Remove 'target=_blank' on Yandex search results page
// @author       Burlaka.net
// @match        *://yandex.ru/search/*
// @require      https://code.jquery.com/jquery-latest.js
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $('a[target=_blank]').removeAttr('target');
})();