Description
Bookmarklet to extract RSS feed URL from Apple Podcasts
Usage
Add bookmarklet
- Add to bookmarks
- Paste snippet code into URL
Get RSS feed
- Go to Apple podcast show URL (i.e. Radio Rental)
- Click on bookmarklet
Snippet
javascript:(function(){var id=window.location.pathname.match(/id(\d+)/);if(id){fetch('https://itunes.apple.com/lookup?id='+id[1]+'&entity=podcast').then(r=>r.json()).then(d=>alert(d.results[0].feedUrl))}})();