青年大学习快速搞完
// ==UserScript==
// @name 青年大学习-视频拖动
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 青年大学习快速搞完
// @author orange add
// @match https://h5.cyol.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=cyol.com
// @grant none
// @license MIT
// ==/UserScript==
(function() {
setInterval(function(){
var iframe = document.getElementsByTagName("iframe")[0];
var videos = iframe.contentWindow.document.getElementsByTagName("video");
for(let i = 0;i<videos.length;i++){
videos[0].setAttribute("controls","true")
}
},1000
)
})();