Created
March 5, 2019 13:52
-
-
Save Dbof/c653591c2a0bf59e523206c05ffb367e to your computer and use it in GitHub Desktop.
Extract HD stream extra3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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