mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
20 lines
540 B
TypeScript
20 lines
540 B
TypeScript
import { ComponentMetadata } from '@/components/types'
|
|
import { none } from '@/core/utils'
|
|
import { liveUrls } from '@/core/utils/urls'
|
|
|
|
export const component: ComponentMetadata = {
|
|
name: 'recordLiveDanmaku',
|
|
displayName: '直播弹幕记录器',
|
|
description: {
|
|
'zh-CN': '在功能中添加直播弹幕记录器, 可以记录直播弹幕并导出XML.',
|
|
},
|
|
entry: none,
|
|
tags: [
|
|
componentsTags.live,
|
|
],
|
|
widget: {
|
|
component: () => import('./RecordDanmaku.vue').then(m => m.default),
|
|
},
|
|
urlInclude: liveUrls,
|
|
}
|