ARTICLE DETAIL

资讯详情

深耕网站建设与运营推广的一线实战洞察。

Bilibili-Evolved 合集包(Pack)使用指南:三个预置功能包的安装链接、构成与源码实现解析

Bilibili-Evolved 合集包(Pack)使用指南:三个预置功能包的安装链接、构成与源码实现解析 Bilibili-Evolved 合集包Pack使用指南三个预置功能包的安装链接、构成与源码实现解析【免费下载链接】Bilibili-Evolved强大的哔哩哔哩增强脚本项目地址: https://gitcode.com/gh_mirrors/bi/Bilibili-Evolved导读Bilibili-Evolved 为用户提供了合集包Pack机制将一批高频使用的增强功能预先打包通过一条条批量安装链接即可一次性装好多个功能免去逐个搜索、勾选、安装的繁琐流程。本文以 doc/features/pack/pack.md 为骨架完整给出简洁至上下载器常用功能包三个官方预置合集包的全部功能清单与四种来源的安装链接并结合 doc/features/pack/pack.json 与 registry/lib/docs/packages 下的 TypeScript 源码逐项解析每个包内功能的作用、可配置选项与底层定义方式帮助读者理解合集包机制并正确选用。合集包是什么根据文档定义合集包提供了批量的功能安装链接方便一次性安装大量功能。它不是独立的功能模块而是一组指向既有组件/插件安装地址的清单。在仓库中合集包的元数据由Package接口描述定义见 registry/lib/docs/index.ts/** 表示一个合集包 */ export interface Package { name: string // 合集包标识名 displayName: string // 展示名称 description?: string // 描述 components?: string[] // 包含的组件按组件名引用 plugins?: string[] // 包含的插件按插件名引用 }由此可见合集包只负责引用组件与插件components字段按名称列出所包含的组件plugins字段列出所包含的插件如常用功能包中的settingsPanel.tagFilters.recentComponents真正的能力仍由各组件自身实现。用户拿到合集包后逐条访问其中的安装链接即可完成批量安装。仓库中共预置了三个官方合集包分别对应 registry/lib/docs/packages 下的三个源文件合集包标识名源文件简洁至上cleanerregistry/lib/docs/packages/cleaner.ts下载器downloaderregistry/lib/docs/packages/downloader.ts常用功能包starterregistry/lib/docs/packages/starter.ts下面逐包展开。合集包一简洁至上cleaner定位简化各种多余界面元素专注于内容本身。包含功能删除广告、删除直播水印、删除视频弹窗、禁用特殊弹幕样式、简化评论区、简化直播间、自动收起直播侧栏、隐藏视频推荐、隐藏直播推荐、隐藏视频标题层。在源码中该包仅引用 10 个组件定义见 registry/lib/docs/packages/cleaner.tsexport const pack: Package { name: cleaner, displayName: 简洁至上, description: 简化各种多余界面元素, 专注于内容本身., components: [ removePromotions, removeLiveWatermark, removePlayerPopup, disableSpecialDanmaku, simplifyComments, simplifyLiveroom, collapseLiveSideBar, hideRelatedVideos, hideRecommendedLive, hideVideoTopMask, ], }包内各功能明细下表汇总了每个组件的具体作用与关键配置依据 doc/features/pack/pack.json 中的描述功能组件名作用说明关键配置项删除广告removePromotions删除站内各种广告包括首页推广模块、手机 app 推荐、视频页面右侧广告等保留活动横幅广告卡片选项完全隐藏或自定义占位文本调试模式启用时以边框高亮广告卡片用于校验屏蔽效果同时其他屏蔽选项失效删除直播水印removeLiveWatermark删除观看直播时角落的水印无删除视频弹窗removePlayerPopup删除视频播放器中出现的各种弹窗类别可在选项中分别选择若之前点了收起弹窗则收起后的小弹窗会直接删除不受类别选择影响弹窗类别多选禁用特殊弹幕样式disableSpecialDanmaku移除高亮弹幕或 UP 主弹幕的特殊样式弹幕内容不会移除无简化评论区simplifyComments去除或优化评论区内的元素配置项仅对新版评论区有效用户等级、装扮 时间、头像框、回复换行楼中楼回复另起一行、编辑框、粉丝勋章、小喇叭横幅等开关简化直播间simplifyLiveroom隐藏直播间中各种不需要的内容无自动收起直播侧栏collapseLiveSideBar自动收起直播间右边偏下、带有关注面板的侧栏无隐藏视频推荐hideRelatedVideos隐藏番剧和视频页面右侧的推荐视频列表。注意若想关闭 b 站自动连播功能需先取消隐藏视频推荐才能看到开关无隐藏直播推荐hideRecommendedLive隐藏视频页面右侧下方的直播推荐无隐藏视频标题层hideVideoTopMask隐藏视频里鼠标经过时出现在右上角的覆盖层无其中删除广告是配置最丰富的组件其行为分为三档完全隐藏会让广告卡片消失、后续视频卡片自动补位自定义模式下可选择在屏蔽首页推广模块后用已屏蔽广告占位文本替代空白区域调试模式则专用于验证屏蔽是否生效。安装链接以下四组链接均可安装简洁至上合集包可任选一组使用jsDelivr Stablehttps://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/utils/remove-promotions.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/live/remove-watermark.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/video/player/remove-popup.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/special-danmaku.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/simplify/comments.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/simplify/live.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/live/side-bar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/hide/video/related-videos.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/hide/video/recommended-live.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/hide/video/top-mask.jsjsDelivr Previewhttps://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/utils/remove-promotions.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/live/remove-watermark.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/video/player/remove-popup.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/special-danmaku.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/simplify/comments.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/simplify/live.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/live/side-bar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/hide/video/related-videos.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/hide/video/recommended-live.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/hide/video/top-mask.jsGitHub Stablehttps://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/utils/remove-promotions.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/live/remove-watermark.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/video/player/remove-popup.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/special-danmaku.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/simplify/comments.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/simplify/live.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/live/side-bar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/hide/video/related-videos.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/hide/video/recommended-live.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/hide/video/top-mask.jsGitHub Previewhttps://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/utils/remove-promotions.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/live/remove-watermark.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/video/player/remove-popup.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/special-danmaku.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/simplify/comments.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/simplify/live.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/live/side-bar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/hide/video/related-videos.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/hide/video/recommended-live.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/hide/video/top-mask.js这些链接对应的组件源码分别位于 registry/lib/components/utils/remove-promotions、registry/lib/components/live/remove-watermark、registry/lib/components/video/player/remove-popup、registry/lib/components/style/special-danmaku、registry/lib/components/style/simplify/comments、registry/lib/components/style/simplify/live、registry/lib/components/live/side-bar、registry/lib/components/style/hide/video/related-videos、registry/lib/components/style/hide/video/recommended-live、registry/lib/components/style/hide/video/top-mask。合集包二下载器downloader定位支持下载各种内容。包含功能下载视频、下载字幕、下载弹幕、下载音频。源码定义见 registry/lib/docs/packages/downloader.tsexport const pack: Package { name: downloader, displayName: 下载器, description: 支持下载各种内容., components: [downloadVideo, downloadSubtitle, downloadDanmaku, downloadAudio], }包内各功能明细功能组件名作用说明注意事项下载视频downloadVideo在功能面板中添加下载视频支持不能下载超出账号权限的视频如非大会员下载大会员清晰度、大陆网络下载港澳台番剧请勿短时间大量下载以免 IP 被封禁下载字幕downloadSubtitle在视频页面中可从功能面板下载字幕AI 生成的字幕不可下载下载弹幕downloadDanmaku在视频和番剧页面中可从功能面板下载弹幕ASS 弹幕下载不会包含高级弹幕、字幕弹幕等下载音频downloadAudio在音频页面中可从功能面板下载当前音频需进入音频详细信息页面才能下载其他页面中按钮不可点击downloadVideo还支持在使用视频非番剧批量下载时于批量命名格式中使用额外的时间与作者变量userUP 主用户名userIDUP 主用户 ID视频发布时间变量publishYear、publishMonth、publishDay、publishHour、publishMinute、publishSecond、publishMillisecond借助这些变量可以在批量下载时按UP 主 发布时间等维度自动组织文件命名例如在命名模板中组合user与publishYear-publishMonth-publishDay即可按作者与日期分目录/分文件保存。安装链接jsDelivr Stablehttps://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/video/download.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/video/subtitle/download.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/video/danmaku/download.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/utils/download-audio.jsjsDelivr Previewhttps://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/video/download.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/video/subtitle/download.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/video/danmaku/download.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/utils/download-audio.jsGitHub Stablehttps://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/video/download.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/video/subtitle/download.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/video/danmaku/download.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/utils/download-audio.jsGitHub Previewhttps://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/video/download.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/video/subtitle/download.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/video/danmaku/download.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/utils/download-audio.js这些链接对应的组件源码位于 registry/lib/components/video/download、registry/lib/components/video/subtitle、registry/lib/components/video/danmaku 与 registry/lib/components/utils/download-audio。合集包三常用功能包starter定位提供一些常用功能。包含功能使用细滚动条、自定义顶栏、删除广告、专栏复制优化、网址参数清理、快捷键扩展、查看封面、BV 号转换、删除直播水印、直播弹幕发送栏、直播全屏包裹、展开动态内容、动态反折叠、快速收起评论、禁止跳转动态详情、展开视频简介、设置面板 - 最近使用 类别。该包是三个包中规模最大的一个包含 16 个组件并且额外包含 1 个插件settingsPanel.tagFilters.recentComponents定义见 registry/lib/docs/packages/starter.tsexport const pack: Package { name: starter, displayName: 常用功能包, description: 提供一些常用功能., components: [ elegantScrollbar, customNavbar, removePromotions, columnUnlock, urlParamsClean, keymap, viewCover, bvidConvert, removeLiveWatermark, liveDanmakuSendbar, liveGiftBox, fullFeedsContent, unfoldFeeds, foldComments, disableFeedsDetails, fullVideoDescription, ], plugins: [settingsPanel.tagFilters.recentComponents], }从源码结构可以看出合集包可以同时携带components与plugins两类条目这正是Package接口中两个可选字段的用途。本包中的插件settingsPanel.tagFilters.recentComponents会在设置面板中新增最近使用类别方便检索最近操作过的组件。包内各功能明细功能组件名作用说明关键配置项 / 备注使用细滚动条elegantScrollbar用浏览器风格的滚动条替代系统滚动条macOS 系统滚动条体验更好官方不建议 macOS 用户启用自定义顶栏customNavbar用脚本提供的顶栏替换原版主站顶栏非主站不替换全局固定、主题色填充、透明填充、背景模糊非常消耗图形性能慎用、投影、使用季节 Logo、触摸模式、新标签页打开、自动刷新数据、顶栏高度b 站原版为 64px、消息提醒样式、搜索栏宽度、链接对齐样式删除广告removePromotions同简洁至上包中的删除广告组件见前文专栏复制优化columnUnlock避免专栏文字复制后末尾带上出处信息更贴近原生复制行为原名专栏文字选择现专栏已不限制选中文字网址参数清理urlParamsClean自动删除网址中的多余跟踪参数会导致浏览器历史记录出现重复标题转换前后各一条后退可能要多退几次可选清理页面中的 A 标签快捷键扩展keymap为脚本功能和 b 站功能启用键盘快捷键支持快捷键列表可在快捷键设置中查看和配置查看封面viewCover在视频页面中可从功能面板查看封面无BV 号转换bvidConvert在功能面板中显示视频的 AV 号和 BV 号无删除直播水印removeLiveWatermark同简洁至上包无直播弹幕发送栏liveDanmakuSendbar在直播的网页全屏和全屏模式下在底部显示弹幕栏无直播全屏包裹liveGiftBox在直播的网页全屏不能是全屏模式下往控制栏添加包裹按钮无展开动态内容fullFeedsContent不管内容多长总是完全展开动态内容专栏不算无动态反折叠unfoldFeeds自动展开被折叠的动态动态被折叠的常见原因短时间内大量更新作品、多人转发同一作品、被审核折叠快速收起评论foldComments动态里查看评论区时在底部添加收起评论按钮无需再回到顶部收起禁止跳转动态详情disableFeedsDetails禁止动态点击后跳转详情页方便选中其中的文字无展开视频简介fullVideoDescription总是展开完整的视频简介无设置面板 - 最近使用 类别settingsPanel.tagFilters.recentComponents插件在设置面板中添加最近使用类别方便检索最近操作过的组件该条目类型为 plugin 而非 component其中自定义顶栏的配置项最为丰富。文档还特别提示启用自定义顶栏后可在反广告插件如 ABP中配置屏蔽原版顶栏的消息 iframe 以提升性能对应地址为*://message.bilibili.com/pages/nav/index_new_pc_sync与*://message.bilibili.com/pages/nav/index_new_sync。安装链接jsDelivr Stablehttps://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/scrollbar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/custom-navbar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/utils/remove-promotions.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/utils/column-unlock.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/utils/url-params-clean.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/utils/keymap.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/utils/view-cover.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/video/bvid-convert.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/live/remove-watermark.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/live/danmaku-sendbar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/live/gift-box.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/feeds/full-content.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/feeds/unfold.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/feeds/fold-comments.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/feeds/disable-details.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/video/full-description.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/plugins/settings-panel/recent-components.jsjsDelivr Previewhttps://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/scrollbar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/custom-navbar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/utils/remove-promotions.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/utils/column-unlock.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/utils/url-params-clean.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/utils/keymap.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/utils/view-cover.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/video/bvid-convert.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/live/remove-watermark.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/live/danmaku-sendbar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/live/gift-box.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/feeds/full-content.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/feeds/unfold.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/feeds/fold-comments.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/feeds/disable-details.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/video/full-description.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/plugins/settings-panel/recent-components.jsGitHub Stablehttps://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/scrollbar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/style/custom-navbar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/utils/remove-promotions.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/utils/column-unlock.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/utils/url-params-clean.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/utils/keymap.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/utils/view-cover.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/video/bvid-convert.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/live/remove-watermark.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/live/danmaku-sendbar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/live/gift-box.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/feeds/full-content.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/feeds/unfold.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/feeds/fold-comments.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/feeds/disable-details.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/components/video/full-description.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/master/registry/dist/plugins/settings-panel/recent-components.jsGitHub Previewhttps://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/scrollbar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/style/custom-navbar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/utils/remove-promotions.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/utils/column-unlock.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/utils/url-params-clean.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/utils/keymap.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/utils/view-cover.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/video/bvid-convert.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/live/remove-watermark.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/live/danmaku-sendbar.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/live/gift-box.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/feeds/full-content.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/feeds/unfold.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/feeds/fold-comments.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/feeds/disable-details.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/components/video/full-description.js https://raw.githubusercontent.com/the1812/Bilibili-Evolved/preview/registry/dist/plugins/settings-panel/recent-components.js这些链接对应的组件源码分别位于 registry/lib/components/style/scrollbar、registry/lib/components/style/custom-navbar、registry/lib/components/utils/column-unlock、registry/lib/components/utils/url-params-clean、registry/lib/components/utils/keymap、registry/lib/components/utils/view-cover、registry/lib/components/video/bvid-convert、registry/lib/components/live/danmaku-sendbar、registry/lib/components/live/gift-box、registry/lib/components/feeds/full-content、registry/lib/components/feeds/unfold、registry/lib/components/feeds/fold-comments、registry/lib/components/feeds/disable-details、registry/lib/components/video/full-description 与 registry/lib/plugins/settings-panel/recent-components。安装链接的四种来源与选择建议每个合集包都同时提供四组安装链接区别仅在于分发渠道与版本通道两个维度分发渠道URL 前缀GitHub 系https://raw.githubusercontent.com/the1812/Bilibili-Evolved/branch/registry/dist/...直接读取仓库registry/dist下编译生成的产物文件jsDelivr 系https://raw.githubusercontent.com/the1812/Bilibili-Evolved/branch/registry/dist/...文档中以 jsDelivr 命名指向相同的产物路径便于走 jsDelivr CDN 加速访问。版本通道分支名Stable使用master分支对应稳定版发布内容Preview使用preview分支对应预览版内容适合希望提前体验新功能的用户。链接中的registry/dist/...路径对应仓库中的编译产物目录其源码清单可对照 doc/features/pack/pack.json 中每个条目的fullRelativePath/fullAbsolutePath字段逐一核对——该 JSON 文件正是合集包文档的数据来源其中type字段区分条目是component还是plugin。从Package接口与三个包的定义源码registry/lib/docs/index.ts、registry/lib/docs/packages/cleaner.ts、registry/lib/docs/packages/downloader.ts、registry/lib/docs/packages/starter.ts可以看出合集包本身不包含任何逻辑实现它只是组件/插件清单 安装链接的组合。因此安装合集包后每个功能依然是一个独立组件可在设置面板中分别开关与配置互不影响。使用建议与注意事项按需选择避免过度安装三个合集包之间存在功能重叠如删除广告删除直播水印同时出现在简洁至上与常用功能包中。重复安装同名组件不会带来额外收益建议根据自身需求只选择其中一个包含该功能的包或在安装后于设置面板中关闭重复项。下载器的权限与频率限制下载视频功能受账号权限约束非大会员无法下载大会员清晰度、大陆网络无法下载港澳台番剧且官方明确提示请勿短时间大量下载以免触发 b 站 IP 封禁。部分功能存在平台差异例如使用细滚动条在 macOS 上体验不如系统滚动条自定义顶栏的背景模糊选项会显著消耗图形性能官方标注慎用。功能间存在相互依赖例如启用隐藏视频推荐后b 站自动连播的开关会被一并隐藏如需调整自动连播需先关闭该功能。预览版通道的取舍Preview 分支预览版相比 Stablemaster稳定版更新更快但可能包含未充分验证的改动生产环境日常使用优先选择 Stable 通道的链接。综上合集包是 Bilibili-Evolved 面向批量安装场景提供的官方打包机制其数据以 doc/features/pack/pack.json 为唯一事实来源类型定义与包清单则在 registry/lib/docs/packages 中维护。读者可按上述四组链接任选其一完成批量安装再根据本文的功能明细表在设置面板中精细调整每个组件的开关与选项。【免费下载链接】Bilibili-Evolved强大的哔哩哔哩增强脚本项目地址: https://gitcode.com/gh_mirrors/bi/Bilibili-Evolved创作声明:本文部分内容由AI辅助生成(AIGC),仅供参考
返回列表