Youtube Auto Pause Youtube Auto Pause

Productivity
Version: 1.4.1
Last Update: 2023-01-31

User Reviews


avatar Party Sheep
2021-04-01

NICE! JUST WHAT I'M LOOKING FOR! THANK YOU SO MUCH!

avatar O P
2021-02-08

Works as expected. Nice work.

avatar Jem Crystal (Jem Fay Crystal)
2020-11-08

I use Enhancer for YouTube™2.0.101 on my Chrome Browser. I study tutorials. In the last month it's function to pause Youtube has not been working. I reported in bug section but no fix. I study a tut to a point then copy paste the spot on the vid using Share option Youtube. Bookmark it. Open where left off next day. I really need the video to pause at this point. So love this Youtube Auto Pause by drodil it works along with Enhancer. Good job!

avatar David Spector
2023-03-27

Simply does not work. Activating a tab starts playing the video. Always. Which means that the video can start playing when you don't want it to.

avatar Quitch
2023-03-15

Almost exactly what I want, except it doesn't work for videos you open in new tabs. Switching to those tabs will play the videos immediately, even if you don't have the resume functionality enabled.

avatar Facundo Zapata
2023-03-05

It works most of the times, but it has some bugs which make every-day use annoying.

avatar 谷口功士
2023-02-25

After looking at dozens of other garbage extensions, I finally found one that actually works. Thanks a lot!

avatar Muhammad Sanjar Afaq
2023-01-23

Doesn't work. Temporary solution (copy and paste for each youtube visit)
```
function toggleYoutubeVideo(value = null)
const videoElements = document.querySelectorAll("video"); // contains false positives too

if (!videoElements?.length) throw new Error("No video elements found");

const mainVideoElement = Array.from(videoElements).find((videoElement) =
videoElement.src.includes("blob:https")
);

if (!mainVideoElement) throw new Error("Main video not found");

switch (value)
case "play":
mainVideoElement.play();
break;
case "pause":
mainVideoElement.pause();
break;

default:
mainVideoElement.getAttribute("paused")
? mainVideoElement.play()
: mainVideoElement.pause();
break;



window.addEventListener("focus", function ()
// document.title = "focused";
toggleYoutubeVideo("play");
);

window.addEventListener("blur", function ()
// document.title = "not focused";
toggleYoutubeVideo("pause");
);
```

avatar Ki !
2022-10-10

useful tool for focusing on what youre doing at the moment

avatar Li Go
2022-06-24

Great. Just what I was looking for. Thx mate.

Related Extensions