Youtube has recently began playing html5 webm version of videos on some pages even though flash is available in your browser and you are not in html5 trial.
For example these videos play html5 webm by default:
http://www.youtube.com/watch?v=CuU91TU7O3s
Other examples (watch?v=Z3IGfwcGBP8) (watch?v=kYcNJQ3Y6Sg) (watch?v=c6tEKLT5G2M)
I am trying to block video elements using greasemonkey javascript. For most youtube videos just removing the video element works. For example:
var h5video = document.getElementsByTagName("video")[0];
h5video.parentNode.removeChild(h5video)
But on this specific page, the video still plays even though you removed the video element, you will hear the audio. http://www.youtube.com/watch?v=cCn-rmgECY0
Why is the video still playing?
How can you block the video using javascript? I want the script to actually break or block the video from loading not just somehow pausing/stopping the video.