Skip to content

Instantly share code, notes, and snippets.

@woodwardtw
Created July 1, 2022 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woodwardtw/698700760b7b77598e90fb48b360f977 to your computer and use it in GitHub Desktop.
Save woodwardtw/698700760b7b77598e90fb48b360f977 to your computer and use it in GitHub Desktop.
bookmarklet to download Panopto videos in playlist
javascript: (() => {var tableRows = document.querySelector('.session-list').querySelectorAll('tr');tableRows.forEach((row) => {if(row.dataset){var dlUrl = 'https://midd.hosted.panopto.com/Panopto/Podcast/Download/'+row.dataset.id+'.mp4?mediaTargetType=videoPodcast';window.open(dlUrl);}});})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment