您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Copy the short YouTube link directly when pressing Shift + S, and with timestamp when pressing Shift + C.
// ==UserScript== // @name YouTube Short Link Copier // @namespace https://gf.qytechs.cn/en/scripts/474134-youtube-short-link-copier // @version 3.2 // @description Copy the short YouTube link directly when pressing Shift + S, and with timestamp when pressing Shift + C. // @author passerbynwfow // @match https://www.youtube.com/* // @match https://music.youtube.com/* // @grant GM_setClipboard // @license MIT // ==/UserScript== (function() { 'use strict'; function getVideoIDFromQuery() { return new URLSearchParams(window.location.search).get("v"); } function getCurrentPlaybackTimeInSeconds() { const videoElem = document.querySelector('video'); return videoElem ? Math.floor(videoElem.currentTime) : 0; } document.addEventListener('keydown', function(e) { if (!e.shiftKey) return; const host = window.location.host; const videoID = getVideoIDFromQuery(); const currentSeconds = getCurrentPlaybackTimeInSeconds(); if (e.key === 'S') { if (host === 'www.youtube.com' && window.location.pathname.startsWith('/shorts/')) { GM_setClipboard(window.location.href); return; } const baseLink = host === 'www.youtube.com' ? 'https://youtu.be/' : 'https://music.youtube.com/watch?v='; if (videoID) GM_setClipboard(`${baseLink}${videoID}`); } else if (e.key === 'C' && videoID) { const baseLink = host === 'www.youtube.com' ? 'https://youtu.be/' : 'https://music.youtube.com/watch?v='; GM_setClipboard(`${baseLink}${videoID}&t=${currentSeconds}`); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址