B站是国内最大的视频弹幕网站,拥有海量的视频资源。但是,B站的视频下载功能受到限制,用户无法直接下载视频。本文将介绍几种最简单的方法,帮助你下载你想看的B站视频。
浏览器插件是下载B站视频最常用的方法,简单易用。
Tampermonkey是一款开源的浏览器插件,支持多种浏览器,例如Chrome、Firefox、Edge等。安装完成后,点击扩展图标,选择“创建新脚本”。
在Tampermonkey的编辑器中,粘贴以下代码:
// ==UserScript==// @name Bilibili Video Downloader// @namespace@version 1.0// @description Download Bilibili videos with one click// @author xiaoxiaoding1// @match@grant none// ==/UserScript==(function() {const downloadbutton = document.createElement('button');downloadButton.innerHTML = '下载视频';downloadButton.style.position = 'fixed';downloadButton.style.top = '0';downloadButton.style.right = '0';downloadButton.style.zIndex = '99999';downloadButton.onclick = function() {const videoUrl = document.querySelector('video source').src;window.open(videoUrl);};document.body.appendChild(downloadButton);})();
本文地址:http://www.hyyidc.com/article/70979.html