I\'m writing a Chrome extension and I want to detect when a video starts/ends while a user is on youtube.com watching videos. The difference between my situation and other tutor
I found a similar questions here, the answers are great (HTML5 is amazing!!) How to play and pause a Youtube video in the console?
for instance, you can use these to play/pause the video (on youtube.com, without youtube iframe on an external website)
document.getElementsByTagName('video')[0].play()
document.getElementsByTagName('video')[0].pause()
there are more functions allowing you to track video length, current play time and more.
P.S: I was having this same question for over a day and it's surprisingly to hard to find the right answer/guide to this! but hope this helps