Created
June 13, 2021 03:22
-
-
Save stefan-vatov/6f9193a5285effec9554604febfa45da to your computer and use it in GitHub Desktop.
[Get youtube channel RSS]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(() => { | |
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