Github search open in new tab

open search results in new tab.

目前為 2021-04-20 提交的版本,檢視 最新版本

// ==UserScript==
// @name	Github search open in new tab
// @namespace	bethropolis.github
// @include	https://github.com/search?*
// @version	0.1
// @grant	GM_xmlhttpRequest
// @grant	GM_getValue
// @grant	GM_setValue
// @grant 	GM_deleteValue
// @require	http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js
// @description open search results in new tab.
// ==/UserScript==

(function() {
    'use strict';
      var a = document.querySelectorAll(".repo-list")
      a.forEach(function(ca){
      ca.querySelector('a').setAttribute('target','_blank')
      })
    // Your code here...
})();

QingJ © 2025

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