您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a Tampermonkey menu to copy a Youtube Channel's RSS feed url to the clipboard.
当前为
// ==UserScript== // @name Youtube - Copy Channel RSS Feed Url To Clipboard // @namespace http://tampermonkey.net/ // @version 0.4 // @description Adds a Tampermonkey menu to copy a Youtube Channel's RSS feed url to the clipboard. // @author You // @match https://www.youtube.com/user/* // @match https://www.youtube.com/channel/* // @grant GM_setClipboard // @grant GM_registerMenuCommand // ==/UserScript== function getChannelRSS(){ let channelRSSurl = '' /* we need to re-request the current page cause youtube doesn't update the json on the page in the <script> source or the ytInitialData.metadata.channelMetadataRenderer.rssUrl when they change the url without a full page reload (e.g. when you click on one of your channels on the left). */ GM_xmlhttpRequest({ method: "GET", url: window.location.href, onload: function({responseText}) { if(responseText.includes('"rssUrl"')){ channelRSSurl = responseText.split('"rssUrl":"')[1].split('"')[0] } else{ // for some reason the rssUrl isn't in the json on the page sometimes, in that case, try to fall back to if the channel name in the url is the youtube channel id channelRSSurl = `https://www.youtube.com/feeds/videos.xml?channel_id=${ window.location.href.split('/channel/')[1].split('/')[0] }` } GM_setClipboard(channelRSSurl) } }) } GM_registerMenuCommand('Copy Youtube Channel RSS Feed To Clipboard', getChannelRSS)