Yandex open results in same tab

Remove 'target=_blank' on Yandex search results page

当前为 2020-01-26 提交的版本,查看 最新版本

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

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