新标签页打开

open in new tab (youtube)

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

// ==UserScript==
// @name         新标签页打开
// @namespace    neo_world_js
// @version      0.1
// @description  open in new tab (youtube)
// @author       neoWorld
// @match        https://www.youtube.com/*
// @icon         https://www.google.com/s2/favicons?domain=youtube.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.onload = () => {
    [...document.querySelectorAll('a')].forEach((ele) => {
      ele.setAttribute('target', '_blank');
      const href = ele.getAttribute('href');
      ele.onclick = (e) => {
        e.stopPropagation();
        window.open(href, '_blank');
        return false;
      };

      ele.setAttribute('href', '#')
    });
  };

})();

QingJ © 2025

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