国培计划油猴脚本
功能
跳过确认按钮,一直学呀学
视频0.1倍速
// ==UserScript==
// @name 2021教师能力提升
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 跳过确认按钮,一直学呀学
// @AuThor bhl
// @match http://study.teacheredu.cn/*
// @match http://course.teacheredu.cn/*
// @license MIT
// @grant none
// @grant unsafeWindow
// @grant GM_addStyle
// ==/UserScript==
//run-at document-start
let weburl=window.location.href
if(weburl.indexOf('study.teacheredu.cn')!=-1)
{
window.alert = function () {
return 1;
}
window.confirm = function () {
return 1;
}
}
if(weburl.indexOf('course.teacheredu.cn')!=-1)
{
let rate = 0.1; //倍速
setTimeout(function(){
document.querySelector('video').volume=0
document.querySelector('video').click()
},2000)
setTimeout(function(){
document.querySelector('video').playbackRate = rate
},3000)
}