javascript: (function () {
if (
location.host.includes("youtube.com") &&
(location.pathname.startsWith("/channel") ||
location.pathname.startsWith("/@"))
) {
const feed = document
.querySelector("link[title='RSS']")
.getAttribute("href");
if (feed.includes(".xml")) {
let toClip = prompt("copy to clipboard", feed);
navigator.clipboard.writeText(toClip);
} else {
window.alert("failed");
}
} else {
window.alert("current page isn't YouTube Channel");
}
})();
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter