mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
24 lines
596 B
TypeScript
24 lines
596 B
TypeScript
import { ComponentMetadata } from '@/components/types'
|
|
|
|
export const component: ComponentMetadata = {
|
|
name: 'downloadAudio',
|
|
displayName: '下载音频',
|
|
entry: none,
|
|
tags: [
|
|
componentsTags.utils,
|
|
],
|
|
description: {
|
|
'zh-CN': `
|
|
开启音频下载支持, 音频页面中可以在功能面板中下载当前音频.
|
|
|
|
> 需要进入音频的详细信息页面才能下载, 在其他页面中此按钮将不可点击.
|
|
`.trim(),
|
|
},
|
|
widget: {
|
|
component: () => import('./DownloadAudio.vue').then(m => m.default),
|
|
},
|
|
urlInclude: [
|
|
'//www.bilibili.com/audio/',
|
|
],
|
|
}
|