Skip to content

Instantly share code, notes, and snippets.

@stefan-vatov
Created June 13, 2021 03:22
Show Gist options
  • Save stefan-vatov/6f9193a5285effec9554604febfa45da to your computer and use it in GitHub Desktop.
Save stefan-vatov/6f9193a5285effec9554604febfa45da to your computer and use it in GitHub Desktop.
[Get youtube channel RSS]
(() => {
let getMeta = (itemProp) => {
let metas = document.getElementsByTagName('meta');
for (let i = 0; i < metas.length; i++) {
if (metas[i].getAttribute('itemprop') === itemProp) {
return metas[i].getAttribute('content');
}
}
return '';
}
let chanId = getMeta('channelId');
let channelRss = 'https://www.youtube.com/feeds/videos.xml?channel_id=' + chanId;
let channelTitle = document.title.match(/\(?\d*\)?\s?(.*?)\s\-\sYouTube/)[1];
console.log('The rss feed of the channel \'' + channelTitle + '\' is:\n' + channelRss);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment