// ==UserScript== // @name 🔥【就是爽】解决网盘不保存只能观看1秒的限制(360和chrome均已测试) // @namespace http://tampermonkey.net/ // @version 3.0 // @description 修复百度网盘视频播放暂停问题 // @license Yolanda Morgan // @author Your Name // @match https://pan.baidu.com/* // @exclude *://pan.baidu.com/disk/* // @exclude *://pan.baidu.com/play/video#/video* // @exclude *://pan.baidu.com/pfile/video* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 启用body编辑 document.body.contentEditable = true; 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); })();