全都不许动

使用js暂停页面播放的视频/音频

// ==UserScript==
// @name         全都不许动
// @namespace    https://viayoo.com/
// @version      0.1
// @description  使用js暂停页面播放的视频/音频
// @author       呆毛飘啊飘
// @run-at       document-end
// @match        https://*/*
// @grant        none
// ==/UserScript==

(function() {
    document.querySelectorAll('audio,video').forEach(el => el.pause());
})();