Tampermonkey 运行 在 YouTube 上加载并注入代码

Tampermonkey to run on YouTube load and inject code

我正在尝试将代码注入 YouTube 以修复 YouTube 的 Magic Actions 中的错误。我有来自 Magic Actions for Youtube 的以下代码,它修复了视频下方的操作栏的位置,但在更新到 YouTube 后它显示在顶部。

javascript:(function(){var b=document.querySelector('#watch7-content span'),a=document.querySelector('ytd-video-primary-info-renderer'),c=a&&a.firstElementChild;b&&a&&c&&a.insertBefore(b,c)})();

以上代码用作书签,但我想使用 Tampermonkey 在 YouTube 视频播放的任何时候插入和运行此代码。

window.onload = function() {
   var b=document.querySelector('#watch7-content span'),a=document.querySelector('ytd-video-primary-info-renderer'),c=a&&a.firstElementChild;b&&a&&c&&a.insertBefore(b,c);
};