Remove YouTube Embed Pause Overlay

Removes the pause overlay from embedded YouTube videos

目前为 2020-10-17 提交的版本。查看 最新版本

// ==UserScript==
// @name         Remove YouTube Embed Pause Overlay
// @namespace    https://gf.qytechs.cn/en/users/9694-croned
// @version      1.2.1
// @description  Removes the pause overlay from embedded YouTube videos
// @author       Croned
// @include      https://www.youtube*.com/embed/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setTimeout(function() {
        document.getElementsByClassName("ytp-pause-overlay ytp-scroll-min")[0].remove();
    }, 1000);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址