iframe.ts 517 B

12345678910111213141516171819
  1. const iframe = new iFrame()
  2. setInterval(() => {
  3. if (document.location.hostname === 'static.crunchyroll.com') {
  4. const video = document.querySelector<HTMLVideoElement>('#player0') ?? document.querySelector<HTMLVideoElement>('#player_html5_api')
  5. if (video && !Number.isNaN(video.duration)) {
  6. iframe.send({
  7. iFrameVideoData: {
  8. iFrameVideo: true,
  9. currTime: video.currentTime,
  10. dur: video.duration,
  11. paused: video.paused,
  12. },
  13. })
  14. }
  15. }
  16. }, 100)