動画スクロール

てきとー

目前為 2022-06-21 提交的版本,檢視 最新版本

// ==UserScript==
// @name         動画スクロール
// @namespace    http://tampermonkey.net/
// @version      0.1
// @license MIT
// @description  てきとー
// @author       つ
// @match        https://www.youtube.com/watch*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant        none
// ==/UserScript==

(function() {
    setTimeout(a,2500);
   function a() {
       var douga = document.getElementById("player")
var hai = douga.cloneNode(true)
var w = douga.clientWidth;
var h = douga.clientHeight;
hai.id = 'player1';
douga.after(hai);
       douga.style.position = 'fixed';
       douga.style.zIndex = '1';
       douga.style.width = w +"px";
       douga.style.height = h +"px";
   }
})();

QingJ © 2025

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