Find and Copy a YouTube Channel's RSS Feed Bookmarklet
Mon Mar 18 2024 14:14:36 GMT+0000 (Coordinated Universal Time)
Saved by
@agedofujpn
#javascript
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");
}
})();
content_copyCOPY
Comments