|
悬赏1油猫币未解决
灯塔在线学习更改学习地址,以前代码失去作用,不知道怎么更改,学了一点明白了代码什么意思,但是不会用,跪求大声给指导一下
网站地址:https://dywlxy.dtdjzx.gov.cn/personal-center
从“我的课程”页面打开视频观看。
// ==UserScript==
// @name 灯塔党建党员教育挂机学习
// @namespace **************
// @version 0.999
// @description 灯塔党建在线挂机学习脚本
// @author luter
// @match *://*.dtdjzx.gov.cn/course/special/*
// @match *://*.dtdjzx.gov.cn/*
// @match *://*.dtdjzx.gov.cn/#/personSpace/*
// @match *://gbwlxy.dtdjzx.gov.cn/content#/personalCenter
// @grant none
// ==/UserScript==
(function ()
{setTimeout(function()
{if(window.location.href.indexOf("#/home")!=-1){
window.open();
}
else
{
if(window.location.href.indexOf("studyCours")!=-1)//课程列表页判断
{document.getElementsByClassName("el-table__row")[0].getElementsByClassName("cell")[6].getElementsByTagName("span")[1].click();
window.opener = null;
window.open(' ','_self');
window.close();}//关闭浏览器窗口
else
{document.getElementsByTagName("video")[0].muted = true;
document.getElementsByTagName("video")[0].play();
setInterval(function ()
{ var ti = document.getElementsByTagName("video")[0].duration-document.getElementsByTagName("video")[0].currentTime
console.log(ti)
if(ti ==0)
{setTimeout(function(){document.querySelector("#app > div > div.nav > div > ul > li:nth-child(10) > a").click();},10000);
//window.close();
setTimeout(function(){window.location.reload();},20000);
}
}, 10000);
}
}
}, 10000);
}
)();
|
|