mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
22 lines
579 B
TypeScript
22 lines
579 B
TypeScript
import { ComponentMetadata } from '@/components/types'
|
|
import { hasVideo } from '@/core/spin-query'
|
|
import { videoAndBangumiUrls } from '@/core/utils/urls'
|
|
|
|
export const component: ComponentMetadata = {
|
|
name: 'bvidConvert',
|
|
displayName: 'BV 号转换',
|
|
entry: none,
|
|
description: {
|
|
'zh-CN': '在功能面板中显示视频的 AV 号和 BV 号.',
|
|
},
|
|
tags: [
|
|
componentsTags.video,
|
|
componentsTags.utils,
|
|
],
|
|
widget: {
|
|
component: () => import('./BvidConvert.vue').then(m => m.default),
|
|
condition: hasVideo,
|
|
},
|
|
urlInclude: videoAndBangumiUrls,
|
|
}
|