百度不新开

当前标签页打开百度搜索结果页面链接

目前為 2020-04-30 提交的版本,檢視 最新版本

// ==UserScript==
// @name           百度不新开
// @namespace    FLScript
// @version         0.0.1
// @include         *://*.baidu.com/s*
// @description   当前标签页打开百度搜索结果页面链接
// @author          FL
// @grant            none
// ==/UserScript==

(function() {
    'use strict';

    let links = document.getElementsByTagName('a');
    for (let i=0; i < links.length; i++) {
      if (links[i].target = '_blank') {
        links[i].target = '_self';
      }
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址