mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
17 lines
609 B
TypeScript
17 lines
609 B
TypeScript
import { ComponentMetadata } from '@/components/types'
|
|
import { toggleStyle } from '@/components/styled-component'
|
|
import { playerUrls } from '@/core/utils/urls'
|
|
|
|
export const component: ComponentMetadata = {
|
|
...toggleStyle('preserveDanmakuInput', () => import('./danmaku-input.scss')),
|
|
displayName: '强制保留弹幕发送栏',
|
|
tags: [
|
|
componentsTags.style,
|
|
componentsTags.video,
|
|
],
|
|
description: {
|
|
'zh-CN': '在视频播放器网页全屏时, 即使宽度过小也强制保留弹幕发送栏, 注意这可能导致右侧的功能按钮挤出边界.',
|
|
},
|
|
urlInclude: playerUrls,
|
|
}
|