mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
20 lines
503 B
TypeScript
20 lines
503 B
TypeScript
import { ComponentMetadata } from '@/components/types'
|
|
|
|
export const component: ComponentMetadata = {
|
|
name: 'downloadLiveRecords',
|
|
displayName: '直播录像下载',
|
|
description: {
|
|
'zh-CN': '在直播录像页面 `live.bilibili.com/record/` 中添加下载支持.',
|
|
},
|
|
tags: [
|
|
componentsTags.live,
|
|
],
|
|
entry: none,
|
|
widget: {
|
|
component: () => import('./DownloadRecords.vue').then(m => m.default),
|
|
},
|
|
urlInclude: [
|
|
/^https:\/\/live\.bilibili\.com\/record\/(.+)/,
|
|
],
|
|
}
|