Skip to content

Instantly share code, notes, and snippets.

View richardfearn's full-sized avatar
🏠

Richard Fearn richardfearn

🏠
View GitHub Profile
@richardfearn
richardfearn / download-zoom-recording.md
Created February 22, 2024 10:33 — forked from atomkirk/download-zoom-recording.md
Force download a zoom recording
  1. Open dev tools
  2. Search for the <video… tag.
  3. Copy the source URL
  4. Right click on the body tag and click Edit as HTML
  5. Add an a link with the src right inside the body tag like:
<body>
  <a href="url-you-copied">download</a>
  ...