// ==UserScript== // @name B站视频截图 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 对当前页面正在播放的B站或油管视频的当前帧进行截图,并启用浏览器下载功能保存到本地。支持设置圆角大小。 // @author 小张 // @match https://www.bilibili.com/video/* // @match https://www.youtube.com/* // @icon https://i0.hdslb.com/bfs/static/jinkela/long/images/favicon.ico // @grant GM_download // @grant GM_setClipboard // @grant GM_addStyle // @license MIT // @downloadURL none // ==/UserScript== (function () { 'use strict'; let isVideoPlaying = true; // 引入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 = $('