// ==UserScript== // @name [kesai]记忆播放 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 很多在线播放器刷新页面后又从头开始播放,这个用来实现记忆播放功能 // @author kesai // @match https://bde4.com/play/* // @match https://v.youku.com/* // @match https://movie.douban.com/trailer* // @match https://www.iqiyi.com/* // @match http://www.iqiyi.com/* // @require https://code.jquery.com/jquery-3.3.1.min.js // @grant GM_setValue // @grant GM_getValue // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... class VideoInfo { constructor(url, curTime, lastTime) { this.url = url; //播放视频所在url this.curTime = curTime; //视频上次播放到的位置 } } const isDebug = true; window.onload = function() { var video = document.getElementsByTagName("video")[0]; debugInfo(video); var btn = $("