mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
23 lines
523 B
TypeScript
23 lines
523 B
TypeScript
import { defineComponentMetadata } from '@/components/define'
|
|
import { allVideoUrls } from '@/core/utils/urls'
|
|
|
|
export const component = defineComponentMetadata({
|
|
name: 'playerShadow',
|
|
displayName: '播放器投影',
|
|
entry: none,
|
|
instantStyles: [
|
|
{
|
|
name: 'playerShadow',
|
|
style: () => import('./player-shadow.scss'),
|
|
},
|
|
],
|
|
tags: [
|
|
componentsTags.style,
|
|
componentsTags.video,
|
|
],
|
|
description: {
|
|
'zh-CN': '为播放器添加主题色投影.',
|
|
},
|
|
urlInclude: allVideoUrls,
|
|
})
|