Video Auto Pause After The Tab Hides
当前为
// ==UserScript==
// @name 切出窗口自动暂停视频(Video Auto Pause After The Tab Hides)
// @namespace http://tampermonkey.net/
// @version 0.3
// @description Video Auto Pause After The Tab Hides
// @author poco
// @match *://*/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant none
// @license GNU GPLv3
// @noframes
// ==/UserScript==
(function() {
document.addEventListener('visibilitychange', () => {
if (document.hidden) {
let videoDom = document.querySelector('video')
if(videoDom){
videoDom.pause()
}
}
})
})();