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