// ==UserScript== // @name 当前页面当前帧视频截图 // @namespace http://tampermonkey.net/ // @version 2024-01-02 // @description 对当前页面正在播放的视频的当前帧进行截图,并启用浏览器下载功能保存到本地。支持设置圆角大小。 // @author 小张 // @match https://www.bilibili.com/video/* // @match https://www.youtube.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com // @grant GM_download // @grant GM_setClipboard // @grant GM_addStyle // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; let isVideoPlaying = true; // Variable to track video playback state // 引入jQuery const script = document.createElement('script'); script.src = 'https://code.jquery.com/jquery-3.6.4.min.js'; document.head.appendChild(script); script.onload = () => { // 创建一个按钮 function createScreenshotButton() { const screenshotButton = $('