Greasy Fork is available in English.

Youtube - Resumer

Store video.currentTime locally

< Commentaires sur Youtube - Resumer

Avis: Bon - le script fonctionne correctement

dr4
§
Posté le: 18/11/2023

The script doesn't seem to work anymore

Dry SpoonAuteur
§
Posté le: 19/11/2023

I think I fixed it. There was an issue finding the video element.

Dry SpoonAuteur
§
Posté le: 19/11/2023

Never mind, it indeed doesn't work. Before, I just called document.querySelector('video') after a "yt-navigate-finish" event, but it stopped working like a week ago. I changed it to keep trying to find a video:

```
const observer = new MutationObserver((mutations, observer) => {
//Keep trying to find video
let video = document.querySelector('video')
if(video){
listen(video)
observer.disconnect() //video found
}
})

observer.observe(document, {childList:true, subtree:true})
```

Now it seems that the video found isn't the correct one.

Dry SpoonAuteur
§
Posté le: 19/11/2023

Just tried this and found 2 video elements. Not sure why this happens.

```
let videos = []

const observer = new MutationObserver((mutations, observer) => {
//Keep trying to find video
let video = document.querySelector('video')
if(video){
if(!videos.includes(video)){
videos.push(video)
}
listen(video)
//observer.disconnect() //video found
}
})
```

Dry SpoonAuteur
§
Posté le: 19/11/2023

Should be fixed. Changed the selector to document.querySelector('video.video-stream').

dr4
§
Posté le: 20/11/2023

Fixed, thanks

Poster une réponse

Connectez-vous pour poster une réponse.