Allow full screen on embedded Youtube

3/8/2020, 10:42:28 PM

当前为 2020-03-20 提交的版本,查看 最新版本

// ==UserScript==
// @name        Allow full screen on embedded Youtube
// @namespace   [email protected]
// @match       *://*/*
// @grant       none
// @version     1.0
// @author      [email protected]
// @description 3/8/2020, 10:42:28 PM
// ==/UserScript==

function fixVideos() {
  const iframes = document.body.querySelectorAll('iframe[src^="https://www.youtube.com/embed/"]:not([allowfullscreen])')
  for (const iframe of iframes) {
    iframe.setAttribute("allowfullscreen","");
    // force reload
    // TODO maybe there's a way to refresh state without reload?
    const span = document.createElement("span");
    iframe.replaceWith(span);
    span.replaceWith(iframe);
    console.log("Forced Youtube allowfullscreen on %o", iframe);
  }
}

fixVideos();

new MutationObserver(fixVideos).observe(document, { childList: true, subtree: true });

QingJ © 2025

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