Remove YT Embed Pause Overlay

Removes the pause overlay from embedded YouTube videos

当前为 2020-01-21 提交的版本,查看 最新版本

// ==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);
})();