google-search-helper

在新标签页打开google搜索结果

目前为 2023-02-17 提交的版本。查看 最新版本

// ==UserScript==
// @name         google-search-helper
// @namespace    github.com/leychan
// @version      0.5
// @description  在新标签页打开google搜索结果
// @author       leychan
// @match        https://www.google.com.hk/search*
// @match        https://www.google.com/search*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant        none
// @license       MIT
// ==/UserScript==

(function() {
    'use strict';

    let result = document.getElementById('search')


    let allATag = result.getElementsByTagName('a')
    for (let i = 0 ;i < allATag.length; i++) {
      allATag[i].setAttribute('target', '_blank')
      console.log(allATag[i])

    }
})();

QingJ © 2025

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