Skip to content

Instantly share code, notes, and snippets.

@miguelcarrascoq
Last active May 28, 2023 23:29
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 miguelcarrascoq/8bae96764b87de5e319e768f179f69e3 to your computer and use it in GitHub Desktop.
Save miguelcarrascoq/8bae96764b87de5e319e768f179f69e3 to your computer and use it in GitHub Desktop.
Watch instagram Live video from Chrome

Go to an Instagram Live video URL (ie: https://www.instagram.com/riosurvolley/live/)

Go to Chrome Console

Copy everything from this jquery URL anf Past it into the Console:

https://code.jquery.com/jquery-3.4.1.min.js

With the Chrome Inspector, move the <video> tag to the top

Finally, execute:

$("video").css(
{
    transform: "rotate(-90deg)",
    width: "100%",
    height: "100vh",
    minHeight: "100%",
    display: "block",
    position: "absolute",
    top: "0px",
    zIndex: "999999",
    scale: "1.7",
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment