Skip to content

Instantly share code, notes, and snippets.

@atomkirk
Last active July 1, 2026 06:36
Show Gist options
  • Select an option

  • Save atomkirk/4f2e85e1283fa955e96c82d4d64d055b to your computer and use it in GitHub Desktop.

Select an option

Save atomkirk/4f2e85e1283fa955e96c82d4d64d055b to your computer and use it in GitHub Desktop.
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>
  ...
  1. Click outside of the editing html to rerender the page and show the download link
  2. Right click on the download link and select "Save as…"
  3. If you can't write click, open dev tools and run this in the console, then try right clicking on downlaod again:
document.removeEventListener('contextmenu', getEventListeners(document).contextmenu[0].listener)
@Mercyboy007

Copy link
Copy Markdown
Screenshot 2026-06-04 080504

Can I get past this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment