Update README

This commit is contained in:
the1812 2019-07-29 15:07:50 +08:00
parent 738504ebf8
commit 6c69ac9637
10 changed files with 16 additions and 11 deletions

View File

@ -316,6 +316,9 @@
### 快速收起动态评论区 ### 快速收起动态评论区
动态里查看评论区时, 在底部添加一个`收起评论`按钮, 这样就不用再回到上面收起了. 动态里查看评论区时, 在底部添加一个`收起评论`按钮, 这样就不用再回到上面收起了.
### 瓜子换硬币
在附加功能中添加`瓜子换硬币`的按钮, 点击可以将700银瓜子换成1个硬币, 每天限1次.
## 触摸 ## 触摸
### 顶栏 ### 顶栏
删除顶栏右侧的一级链接(从`大会员`到`历史`), 以方便触屏设备快速预览信息. 被删除的链接可从各预览中的`查看更多`进入. 删除顶栏右侧的一级链接(从`大会员`到`历史`), 以方便触屏设备快速预览信息. 被删除的链接可从各预览中的`查看更多`进入.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1853,7 +1853,7 @@ Resource.manifest = {
seedsToCoins: { seedsToCoins: {
path: 'seeds-to-coins.min.js', path: 'seeds-to-coins.min.js',
displayNames: { displayNames: {
seedsToCoins: '直播间瓜子换硬币', seedsToCoins: '瓜子换硬币',
autoSeedsToCoins: '自动运行', autoSeedsToCoins: '自动运行',
}, },
}, },

View File

@ -1853,7 +1853,7 @@ Resource.manifest = {
seedsToCoins: { seedsToCoins: {
path: 'seeds-to-coins.min.js', path: 'seeds-to-coins.min.js',
displayNames: { displayNames: {
seedsToCoins: '直播间瓜子换硬币', seedsToCoins: '瓜子换硬币',
autoSeedsToCoins: '自动运行', autoSeedsToCoins: '自动运行',
}, },
}, },

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -653,7 +653,7 @@ Resource.manifest = {
seedsToCoins: { seedsToCoins: {
path: 'seeds-to-coins.min.js', path: 'seeds-to-coins.min.js',
displayNames: { displayNames: {
seedsToCoins: '直播间瓜子换硬币', seedsToCoins: '瓜子换硬币',
autoSeedsToCoins: '自动运行', autoSeedsToCoins: '自动运行',
}, },
}, },

View File

@ -106,6 +106,7 @@
<checkbox indent="0" key="noLiveAutoplay" dependencies=""></checkbox> <checkbox indent="0" key="noLiveAutoplay" dependencies=""></checkbox>
<checkbox indent="1" key="hideHomeLive" dependencies="noLiveAutoplay"></checkbox> <checkbox indent="1" key="hideHomeLive" dependencies="noLiveAutoplay"></checkbox>
<checkbox indent="0" key="foldComment" dependencies=""></checkbox> <checkbox indent="0" key="foldComment" dependencies=""></checkbox>
<checkbox indent="0" key="seedsToCoins" dependencies=""></checkbox>
<!-- <checkbox indent="0" key="noMiniVideoAutoplay" dependencies=""></checkbox> --> <!-- <checkbox indent="0" key="noMiniVideoAutoplay" dependencies=""></checkbox> -->
<category icon="touch">触摸</category> <category icon="touch">触摸</category>
<checkbox indent="0" key="touchNavBar" dependencies=""></checkbox> <checkbox indent="0" key="touchNavBar" dependencies=""></checkbox>

View File

@ -132,6 +132,7 @@ export const toolTips = new Map<keyof BilibiliEvolvedSettings, string>([
['foldComment', /*html*/`动态里查看评论区时, 在底部添加一个<span>收起评论</span>按钮, 这样就不用再回到上面收起了.`], ['foldComment', /*html*/`动态里查看评论区时, 在底部添加一个<span>收起评论</span>按钮, 这样就不用再回到上面收起了.`],
['useDefaultVideoSpeed', /*html*/`设置是否使用默认视频播放速度.`], ['useDefaultVideoSpeed', /*html*/`设置是否使用默认视频播放速度.`],
['defaultVideoSpeed', /*html*/`设置默认的视频播放速度.`], ['defaultVideoSpeed', /*html*/`设置默认的视频播放速度.`],
['seedsToCoins', /*html*/`在附加功能中添加<span>瓜子换硬币</span>的按钮, 点击可以将700银瓜子换成1个硬币, 每天限1次.`]
]); ]);
export default { export default {
export: { toolTips }, export: { toolTips },