Use the video bug to skip the progress bar
当前为
// ==UserScript==
// @name 用video的bug来跳过进度条
// @namespace http://tampermonkey.net/
// @version 1.22
// @description Use the video bug to skip the progress bar
// @author lvandy
// @match *://*/*
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 监听整个文档的点击事件
document.addEventListener('click', function(event) {
// 使用querySelector选择页面上的第一个视频元素
var video = document.querySelector("video");
// 检查是否成功选择了视频元素
if (video) {
// 触发'ended'事件
video.dispatchEvent(new Event("ended"));
}
});
})();