法制考试常用脚本

moxiaoying
11月4日发布 /正在检测是否收录...

1. 过无限debugger

Function.prototype.__constructor_back = Function.prototype.constructor;
Function.prototype.constructor = function() {
    if(arguments && typeof arguments[0]==='string'){
        if("debugger" === arguments[0]){
            return
        }
    }
   return Function.prototype.__constructor_back.apply(this,arguments);
}

2.自动答题

3. 自动播放视频

const video_player = document.querySelector('#myVideo_html5_api')
video_player.play()
// 静音
video_player.volume = 0
// 16倍数
video_player.playbackRate = 1
喜欢就支持一下吧
点赞 0 分享 收藏
评论
所有页面的评论已关闭