Github search open in new tab

open search results in new tab.

  1. // ==UserScript==
  2. // @name Github search open in new tab
  3. // @namespace bethropolis.github
  4. // @match https://github.com/search?*
  5. // @version 1.0
  6. // @homepage https://gf.qytechs.cn/en/scripts/425294-github-search-open-in-new-tab
  7. // @description open search results in new tab.
  8. // @license MIT
  9. // @copyright 2021, Jav_bethro (https://github.com/bethropolis)
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. 'use strict';
  14. let a = document.querySelectorAll(".repo-list")
  15. a.forEach(function (ca) {
  16. ca.querySelector('a').setAttribute('target', '_blank')
  17. })
  18. // Your code here...
  19. })();

QingJ © 2025

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