// ==UserScript== // @name 解决网盘不保存只能观看1秒的限制(360和chrome均已测试) // @namespace http://tampermonkey.net/ // @version 1.0 // @description 修复百度网盘视频播放暂停问题 // @license Yolanda Morgan // @author Your Name // @match https://pan.baidu.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; let checkAble = setInterval(function(){ let video = document.querySelector("#html5player_html5_api"); let controlsBar = document.querySelector("#html5player > div.vjs-control-bar"); let overlayIframe = document.querySelector("#video-wrap-outer > div.video-overlay-iframe"); let videoStartTip = document.querySelector(".video-start-tip"); if (video && controlsBar && overlayIframe && videoStartTip) { console.log("%cBaidu Wangpan Video Control: ", "color:red;font-size:16px;font-weight:bold", "Start"); clearInterval(checkAble); video.controls = "true"; video.pause = null; controlsBar.style.display = "none"; overlayIframe.style.display = "none"; videoStartTip.style.display = "none"; // 添加此行 console.log("%cBaidu Wangpan Video Control: ", "color:green;font-size:16px;font-weight:bold", "Successful"); } }, 1000); })();