mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
17 lines
856 B
C#
17 lines
856 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace BilibiliEvolved.Build
|
|
{
|
|
static class Description
|
|
{
|
|
public static readonly string Master = "增强哔哩哔哩Web端体验: 下载视频, 音乐, 封面, 弹幕; 自定义播放器的画质, 模式, 布局; 自定义顶栏, 删除广告, 使用夜间模式; 以及增加对触屏设备的支持等.";
|
|
public static readonly string Preview = "Bilibili Evolved 的预览版, 可以抢先体验新功能.";
|
|
public static readonly string Offline = "Bilibili Evolved 的离线版, 所有功能都已内置于脚本中.";
|
|
public static readonly string PreviewOffline = "Bilibili Evolved 的预览离线版, 可以抢先体验新功能, 并且所有功能都已内置于脚本中.";
|
|
}
|
|
}
|