Skip to content

Instantly share code, notes, and snippets.

@otnansirk
Last active August 17, 2026 08:13
Show Gist options
  • Select an option

  • Save otnansirk/b7faf5d7c2d292f9b2e740641b99ecf1 to your computer and use it in GitHub Desktop.

Select an option

Save otnansirk/b7faf5d7c2d292f9b2e740641b99ecf1 to your computer and use it in GitHub Desktop.
Upload mp4 or gif to google meeting background

Steps

  1. Right click to upload background on g-meet and click inspect (open dev tools)
  2. Search
<input type="file" jsname="tif8Pe" jsaction="change:E7zRc" accept="image/jpeg, image/png" style="display: none;">
Where it says accept="image/jpeg, image/png"

and replace to this

accept="image/jpeg, image/png, image/gif, video/mp4"
  1. Voila, Finish and try to upload your gif or mp4 file
@amritmirch

Copy link
Copy Markdown

This hack is great. I ended up packaging this exact approach into a free Chrome extension so you don't have to paste the snippet each call — MeetMoves:
https://chromewebstore.google.com/detail/meetmoves/pcihfjkbfcfademdaplkhmgngdlkfepg
Full disclosure I built it, and credit to hacks like this for the idea. Sharing in case it saves anyone the devtools step.

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