Skip to content

Instantly share code, notes, and snippets.

@Dbof
Created March 5, 2019 13:52
Show Gist options
  • Save Dbof/c653591c2a0bf59e523206c05ffb367e to your computer and use it in GitHub Desktop.
Save Dbof/c653591c2a0bf59e523206c05ffb367e to your computer and use it in GitHub Desktop.
Extract HD stream extra3
function createQR(text) {
window.open('https://duckduckgo.com/?q=qr%20'+text)
}
ifr = document.querySelector('iframe')
if (ifr) {
document.location.href = ifr.src
} else {
ard = document.querySelector('.ardplayer-postercontrol');
ard.click();
createQR(document.querySelector('source').src);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment