Youtube Autostop
Loads youtube videos in the unstarted state
Stops multiple video services on tab unfocus and continues on focus
按已采集快照查看用户数变化。
展示最近 7 日窗口内已采集的评分快照,辅助判断近期评分是否稳定。
同口径展示 1 天、7 天、30 天的绝对增长与增长率。
查看发布时间、版本、支持语言、最近更新和抓取时间。
查看插件说明、主要功能和适用场景。
Have you ever been caught off guard with a video still playing when someone (like your boss) surprises you? With Video Auto Pause, you won't have to worry anymore! This open-source Chrome extension automatically pauses various video services when you switch tabs, switch windows, lock your computer, or scroll through comments. It resumes playback seamlessly when you return or refocus. You can easily customize the functionality to fit your needs.
Key Features:
* Auto-pauses videos on tab/window switch, computer lock, and comment scrolling
* Resumes videos when you refocus or return to the tab/window
* Supports various popular video platforms
* Customizable settings to suit your preferences
查看最近评论和评分分布。
商店综合星级:3.7。下方星级分布只统计已同步评论正文;如果某个插件只有公开分数、没有真实评论正文,这里可能为空。
查看 Chrome 商店详情页中的相关产品。
Loads youtube videos in the unstarted state
Chrome Extension for Turning off Autoplay on YouTube.
Disables the "Video Paused. Continue Watching?" popup on YouTube.
Pause other audio and video sources if audio is playing on active tab with automatic resume
Stops videos and gifs from auto-playing.
Pause YouTube video when switching tabs, resume when returning.
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.
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.
It works most of the times, but it has some bugs which make every-day use annoying.
After looking at dozens of other garbage extensions, I finally found one that actually works. Thanks a lot!
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"); }); ```
useful tool for focusing on what youre doing at the moment
Great. Just what I was looking for. Thx mate.
Awesome but doesn't work with 2+ monitors the window is clearly out of focus and the video still plays ,have to switch between tabs to make it work which defeats the purpose
Great work! thx!
This is great for watching tutorials. But sometimes i would want the video to not pause. So it would be nice to have a shortcut to temporarily disable the pause functionality. Otherwise i have to keep pressing the extension icon to uncheck those and check again few minutes later when i need them. Even better would be if it disabled itself for a certain minutes. Then it automatically enables itself. That way i wont have to remember to check those boxes again. Otherwise this extension is great help.