您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
收集B站舞蹈小姐姐高清封面照片,添加查看封面按钮,打开右键另存就行,支持新旧版B站
当前为
// ==UserScript== // @name B站获取视频作品封面 // @namespace https://zhang18.top // @version 0.1 // @description 收集B站舞蹈小姐姐高清封面照片,添加查看封面按钮,打开右键另存就行,支持新旧版B站 // @author ZLOE // @match https://www.bilibili.com/video/* // @grant none // @require https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js // ==/UserScript== (function() { 'use strict'; window.setTimeout(function(){ var img_url = $('meta[itemprop="thumbnailUrl"]').attr("content") //旧版 var text = $(".trynew-btn").text() console.log(img_url) if (text == '试用新版'){ $('.bilibili-player-video-btn-send').after('<div class="bpui-button" style="position: relative;top: 4px;height: 28px;margin-right: 10px;"><a href="'+img_url+'" style="line-height: 28px;color: white;" download="IMG" target="_blank">查看封面 ></a></div>'); } else { //新版 $('.bilibili-player-video-danmaku-root').css({'margin-left':'-40px',}) $('.bilibili-player-video-btn-send').after('<div class="bilibili-player-video-btn-send down_img" style="margin-left: 3px;background-color: rgb(0, 161, 214);"><a href="'+img_url+'" style="line-height: 28px;color: white;" download="IMG" target="_blank">查看封面</a></div>'); } }, 2000); // Your code here... })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址