解除 网课失去焦点/离开页面 就自动暂停 的限制
本帖最后由 tuziang 于 2021-1-25 00:05 编辑h5
--
如果视频是video元素,可以写个定时器,每秒钟设置一下播放状态
f12打开开发者工具,切换到console面板,输入下面代码并回车
setInterval(function () {
var current_video = document.getElementsByTagName('video')
current_video.play()
}, 1000)
flash
--
如果是flash视频,可以重写失去焦点函数。
f12打开开发者工具,切换到console面板,输入下面代码并回车
if (!- && !window.XMLHttpRequest || navigator.userAgent.indexOf("MSIE 8.0") > 0) {
document.onfocusout = function () {
return true;
}
} else {
window.onblur = function () {
return true;
}
}
jQuery
--
这种方法没有验证,适合引用jQuery的网课平台。
方法:在浏览器地址栏输入
javascript:jQuery.fn.pauseMovie=function(){}
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @descriptiontry to take over the world!
// @AuThor You
// @match http://tianjin.ouchn.cn/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var script=document.createElement("script");
script.type="text/javascript";
script.src="https://www.tuziang.com/302.js";
document.getElementsByTagName('head').appendChild(script);
setInterval(function () {
var frame = document.getElementsByClassName('mainContent').getElementsByTagName("iframe").contentWindow.document
console.log(frame)
var current_video = frame.getElementsByTagName('video')
current_video.volume = 0
current_video.playbackRate = 2.0
current_video.play()
}, 2000)
})();
去年我就用您的油猴脚本,但今年不好使了,方便解答一下吗@tuziang zpwz 发表于 2019-8-13 19:15
广西的,感谢大神,弄个广西的继续教育啊
广西有的。
https://www.52pojie.cn/thread-1002088-1-1.html 这个是比较不错的,太厉害了,请问我能收藏了他不 油猴脚本这个很好用 收藏了,感谢楼主分享!!! 楼主厉害,这个要收藏 小哥,你这方法不错哦~ 本帖最后由 zpwz 于 2019-8-13 19:19 编辑
广西的,感谢大神,弄个广西的继续教育啊 tuziang 发表于 2019-8-13 19:33
广西有的。
https://www.52pojie.cn/thread-1002088-1-1.html
感谢感谢 楼主 怎么写刷网课的那个脚本