法制考试常用脚本

moxiaoying
1年前发布 /正在检测是否收录...
温馨提示:
本文最后更新于2025年12月09日,已超过102天没有更新,若内容或图片失效,请留言反馈。

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 分享 收藏
评论
所有页面的评论已关闭