Removes the pause overlay from embedded YouTube videos
当前为
// ==UserScript==
// @name Remove YT Embed Pause Overlay
// @namespace https://greasyfork.org/en/users/9694-croned
// @version 1.1
// @description Removes the pause overlay from embedded YouTube videos
// @author Croned
// @match https://www.youtube.com/embed/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(function() {
document.getElementsByClassName("ytp-pause-overlay ytp-scroll-min")[0].remove();
}, 1000);
})();