mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
Merge branch 'preview-fixes' of https://github.com/the1812/Bilibili-Evolved into preview-fixes
This commit is contained in:
commit
b811173532
1
.vscode/settings.json
vendored
1
.vscode/settings.json
vendored
@ -92,6 +92,7 @@
|
|||||||
"Violentmonkey",
|
"Violentmonkey",
|
||||||
"Vuex",
|
"Vuex",
|
||||||
"Wasm",
|
"Wasm",
|
||||||
|
"watchlater",
|
||||||
"woff",
|
"woff",
|
||||||
"xmlhttp"
|
"xmlhttp"
|
||||||
],
|
],
|
||||||
|
|||||||
@ -3,21 +3,30 @@ import { TestPattern } from '../common-types'
|
|||||||
|
|
||||||
/** 稍后再看页面 */
|
/** 稍后再看页面 */
|
||||||
export const watchlaterUrls = [
|
export const watchlaterUrls = [
|
||||||
'//www.bilibili.com/medialist/play/watchlater/',
|
'//www.bilibili.com/medialist/play/watchlater',
|
||||||
]
|
]
|
||||||
/** 收藏夹连播页面 */
|
/** 收藏夹连播页面 */
|
||||||
export const favoriteListUrls = [
|
export const favoriteListUrls = [
|
||||||
'//www.bilibili.com/medialist/play/ml',
|
'//www.bilibili.com/medialist/play/ml',
|
||||||
]
|
]
|
||||||
|
/** UP 主视频连播页面 */
|
||||||
|
export const upListUrls = [
|
||||||
|
/\/\/www\.bilibili\.com\/medialist\/play\/\d+/,
|
||||||
|
]
|
||||||
/** 合集类页面 */
|
/** 合集类页面 */
|
||||||
export const mediaListUrls = [
|
export const mediaListUrls = [
|
||||||
...watchlaterUrls,
|
...watchlaterUrls,
|
||||||
...favoriteListUrls,
|
...favoriteListUrls,
|
||||||
|
...upListUrls,
|
||||||
|
]
|
||||||
|
/** 拜年纪页面 */
|
||||||
|
export const bnjUrls = [
|
||||||
|
/\/\/www\.bilibili\.com\/festival\/(\d+)bnj/,
|
||||||
]
|
]
|
||||||
/** 含有普通视频的页面 */
|
/** 含有普通视频的页面 */
|
||||||
export const videoUrls = [
|
export const videoUrls = [
|
||||||
'//www.bilibili.com/video/',
|
'//www.bilibili.com/video/',
|
||||||
/\/\/www\.bilibili\.com\/festival\/(\d+)bnj/,
|
...bnjUrls,
|
||||||
...mediaListUrls,
|
...mediaListUrls,
|
||||||
]
|
]
|
||||||
/** 含有番剧的页面 */
|
/** 含有番剧的页面 */
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user