Skip to content

Instantly share code, notes, and snippets.

@warlock0x
Created February 10, 2020 15:56
Show Gist options
  • Save warlock0x/3e92bf73cc1370d7cdee0440711e5ab7 to your computer and use it in GitHub Desktop.
Save warlock0x/3e92bf73cc1370d7cdee0440711e5ab7 to your computer and use it in GitHub Desktop.
Bookmarklet che, al click da una pagina all'indirizzo video.repubblica.it, apre una nuova finestra con il video embedded.
javascript:(function(){ var player = document.getElementById('player'); var videourl = player.querySelectorAll(`meta[itemprop="contentUrl"]`); window.open(videourl[0].getAttribute("content")); })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment