mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-02 01:58:11 +08:00
50 lines
1.8 KiB
JavaScript
50 lines
1.8 KiB
JavaScript
module.exports = {
|
|
'qq.com': {
|
|
_name: '腾讯网',
|
|
ac: [
|
|
{
|
|
title: '排行榜',
|
|
docs: 'https://docs.rsshub.app/routes/anime#teng-xun-dong-man-pai-hang-bang',
|
|
source: ['/Rank/comicRank/type/:type', '/'],
|
|
target: '/qq/ac/rank/:type?/:time?',
|
|
},
|
|
{
|
|
title: '漫画',
|
|
docs: 'https://docs.rsshub.app/routes/anime#teng-xun-dong-man-man-hua',
|
|
source: ['/Comic/ComicInfo/id/:id', '/'],
|
|
target: '/qq/ac/comic/:id',
|
|
},
|
|
],
|
|
live: [
|
|
{
|
|
title: '企鹅直播',
|
|
docs: 'https://docs.rsshub.app/routes/live#qi-e-zhi-bo-zhi-bo-jian-ti-xing',
|
|
source: ['/:id', '/'],
|
|
target: '/qq/live/:id',
|
|
},
|
|
],
|
|
'node.kg': [
|
|
{
|
|
title: '用户作品列表 - 全民 K 歌',
|
|
docs: 'https://docs.rsshub.app/routes/live#qi-e-zhi-bo-zhi-bo-jian-ti-xing',
|
|
source: ['/personal'],
|
|
target: (_params, url) => `/qq/kg/${new URL(url).searchParams.get('uid')}`,
|
|
},
|
|
{
|
|
title: '用户作品评论动态 - 全民 K 歌',
|
|
docs: 'https://docs.rsshub.app/routes/live#qi-e-zhi-bo-zhi-bo-jian-ti-xing',
|
|
source: ['/play'],
|
|
target: (_params, url) => `/qq/kg/${new URL(url).searchParams.get('s')}`,
|
|
},
|
|
],
|
|
'vp.fact': [
|
|
{
|
|
title: '最新辟谣',
|
|
docs: 'https://docs.rsshub.app/routes/other#teng-xun-xin-wen-jiao-zhen-cha-zheng-ping-tai',
|
|
source: ['/home', '/'],
|
|
target: '/qq/fact',
|
|
},
|
|
],
|
|
},
|
|
};
|