您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Opens youtube video links in new tab on the subscriptions page. Works on mobile or tablet only (m.youtube.com).
// ==UserScript== // @name m.YouTube.com open video links in new tab on subscriptions page // @namespace m-youtube-com-open-links-in-new-tab // @version 1.0 // @description Opens youtube video links in new tab on the subscriptions page. Works on mobile or tablet only (m.youtube.com). // @author hlorand.hu // @match https://m.youtube.com/feed/subscriptions // @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net // @grant none // @license https://creativecommons.org/licenses/by-nc-sa/4.0/ // ==/UserScript== (function() { setInterval(() => { document.querySelectorAll('a[href*="watch?v="]:not([target="_blank"])').forEach(a => { a.setAttribute('target', '_blank'); }); }, 1000); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址