docs: add rssbud related info (#5857)
Co-authored-by: Cay Zhang <zcy20020811@gmail.com> Co-authored-by: DIYgod <diy.d.god@gmail.com>
This commit is contained in:
parent
b7245cce05
commit
32f1e0d494
|
|
@ -15,7 +15,7 @@ RSSHub is an open source, easy to use, and extensible RSS feed aggregator, it's
|
|||
|
||||
RSSHub delivers millions of contents aggregated from all kinds of sources, our vibrant open source community is ensuring the deliver of RSSHub's new routes, new features and bug fixes.
|
||||
|
||||
RSSHub can be used with browser extension [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar)
|
||||
RSSHub can be used with browser extension [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) and iOS auxiliary app [RSSBud](https://github.com/Cay-Zhang/RSSBud)
|
||||
|
||||
[English docs](https://docs.rsshub.app/en) | [Telegram Group](https://t.me/rsshub) | [Telegram Channel](https://t.me/awesomeRSSHub)
|
||||
|
||||
|
|
@ -23,7 +23,7 @@ RSSHub can be used with browser extension [RSSHub Radar](https://github.com/DIYg
|
|||
|
||||
RSSHub 是一个开源、简单易用、易于扩展的 RSS 生成器,可以给任何奇奇怪怪的内容生成 RSS 订阅源。RSSHub 借助于开源社区的力量快速发展中,目前已适配数百家网站的上千项内容
|
||||
|
||||
可以配合浏览器扩展 [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) 食用
|
||||
可以配合浏览器扩展 [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) 和 iOS 辅助 App [RSSBud](https://github.com/Cay-Zhang/RSSBud) 食用
|
||||
|
||||
[中文文档](https://docs.rsshub.app) | [Telegram 群](https://t.me/rsshub) | [Telegram 频道](https://t.me/awesomeRSSHub)
|
||||
|
||||
|
|
@ -51,6 +51,11 @@ Logo designer [sheldonrrr](https://dribbble.com/sheldonrrr)
|
|||
|
||||
<a href="https://www.cloudflare.com" target="_blank"><img height="50px" src="https://i.imgur.com/7Ph27Fq.png"></a> <a href="https://www.netlify.com" target="_blank"><img height="40px" src="https://i.imgur.com/cU01915.png"></a>
|
||||
|
||||
## Related Projects
|
||||
|
||||
- [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) | 一个可以帮助你快速发现和订阅当前网站 RSS 和 RSSHub 的浏览器扩展
|
||||
- [RSSBud](https://github.com/Cay-Zhang/RSSBud) ([TestFlight 公测](https://testflight.apple.com/join/rjCVzzHP)) | iOS 平台的 RSSHub Radar,专为移动生态优化
|
||||
|
||||
## Join Us
|
||||
|
||||
We welcome all pull requests. Suggestions and feedback are also welcomed [here](https://github.com/DIYgod/RSSHub/issues).
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div class="routeBlock" :id="path">
|
||||
<p class="badge">
|
||||
<Badge text="支持 BT" type="tip" vertical="middle" v-if="supportBT"/> <Badge text="支持播客" type="tip" vertical="middle" v-if="supportPodcast"/> <Badge text="支持 Scihub" type="tip" vertical="middle" v-if="supportScihub"/> <a target="_blank" href="/faq.html" v-if="anticrawler"><Badge text="反爬严格" vertical="middle" type="warn"/></a> <a target="_blank" href="https://github.com/DIYgod/RSSHub-Radar" v-if="radar"><Badge text="支持浏览器扩展" vertical="middle" type="tip"/></a>
|
||||
<Badge text="支持 BT" type="tip" vertical="middle" v-if="supportBT"/> <Badge text="支持播客" type="tip" vertical="middle" v-if="supportPodcast"/> <Badge text="支持 Scihub" type="tip" vertical="middle" v-if="supportScihub"/> <a target="_blank" href="/faq.html" v-if="anticrawler"><Badge text="反爬严格" vertical="middle" type="warn"/></a> <a target="_blank" href="https://github.com/DIYgod/RSSHub-Radar" v-if="radar"><Badge text="支持浏览器扩展" vertical="middle" type="tip"/></a> <a target="_blank" href="https://github.com/Cay-Zhang/RSSBud" v-if="rssbud"><Badge text="支持 RSSBud" vertical="middle" type="tip"/></a>
|
||||
</p>
|
||||
<p class="author">
|
||||
作者: <a v-for="uid in author.split(' ')" :href="`https://github.com/${uid}`" target="_blank"> @{{ uid }} </a>
|
||||
|
|
@ -60,6 +60,10 @@ export default {
|
|||
type: String,
|
||||
default: null
|
||||
},
|
||||
rssbud: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
renderMarkdown(item) {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div class="routeBlock" :id="path">
|
||||
<p class="badge">
|
||||
<Badge text="support BT" type="tip" vertical="middle" v-if="supportBT"/> <Badge text="support podcast" type="tip" vertical="middle" v-if="supportPodcast"/> <a target="_blank" href="/en/faq.html" v-if="anticrawler"><Badge text="strict anti-crawler policy" vertical="middle" type="warn"/></a> <a target="_blank" href="https://github.com/DIYgod/RSSHub-Radar" v-if="radar"><Badge text="support browser extension" vertical="middle" type="tip"/></a>
|
||||
<Badge text="support BT" type="tip" vertical="middle" v-if="supportBT"/> <Badge text="support podcast" type="tip" vertical="middle" v-if="supportPodcast"/> <a target="_blank" href="/en/faq.html" v-if="anticrawler"><Badge text="strict anti-crawler policy" vertical="middle" type="warn"/></a> <a target="_blank" href="https://github.com/DIYgod/RSSHub-Radar" v-if="radar"><Badge text="support browser extension" vertical="middle" type="tip"/></a> <a target="_blank" href="https://github.com/Cay-Zhang/RSSBud" v-if="rssbud"><Badge text="support rssbud" vertical="middle" type="tip"/></a>
|
||||
</p>
|
||||
<p class="author">
|
||||
Author: <a v-for="uid in author.split(' ')" :href="`https://github.com/${uid}`" target="_blank"> @{{ uid }} </a>
|
||||
|
|
@ -56,6 +56,10 @@ export default {
|
|||
type: String,
|
||||
default: null
|
||||
},
|
||||
rssbud: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
renderMarkdown(item) {
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ sidebarDepth: 0
|
|||
|
||||
RSSHub 是一个开源、简单易用、易于扩展的 RSS 生成器,可以给任何奇奇怪怪的内容生成 RSS 订阅源。RSSHub 借助于开源社区的力量快速发展中,目前已适配数百家网站的上千项内容
|
||||
|
||||
可以配合浏览器扩展 [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) 食用
|
||||
可以配合浏览器扩展 [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) 和 iOS 辅助 App [RSSBud](https://github.com/Cay-Zhang/RSSBud) 食用
|
||||
|
||||
[Telegram 群](https://t.me/rsshub) \| [Telegram 频道](https://t.me/awesomeRSSHub)
|
||||
|
||||
|
|
@ -42,3 +42,8 @@ Logo designer [sheldonrrr](https://dribbble.com/sheldonrrr)
|
|||
### Backers
|
||||
|
||||
<a href="https://www.cloudflare.com" target="_blank"><img height="50px" src="https://cn-south-17-rsshub-16857749.oss.dogecdn.com/cloudflare.png"></a><a href="https://www.netlify.com" target="_blank" style="margin-left: 60px;"><img height="40px" src="https://cn-south-17-rsshub-16857749.oss.dogecdn.com/netlify.png"></a>
|
||||
|
||||
## 相关项目
|
||||
|
||||
- [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) | 一个可以帮助你快速发现和订阅当前网站 RSS 和 RSSHub 的浏览器扩展
|
||||
- [RSSBud](https://github.com/Cay-Zhang/RSSBud) ([TestFlight 公测](https://testflight.apple.com/join/rjCVzzHP)) | iOS 平台的 RSSHub Radar,专为移动生态优化
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ pageClass: routes
|
|||
|
||||
### 番剧
|
||||
|
||||
<Route author="xyqfer" example="/acfun/bangumi/5022158" path="/acfun/bangumi/:id" :paramsDesc="['番剧 id']" radar="1"/>
|
||||
<Route author="xyqfer" example="/acfun/bangumi/5022158" path="/acfun/bangumi/:id" :paramsDesc="['番剧 id']" radar="1" rssbud="1"/>
|
||||
|
||||
::: tip 提示
|
||||
|
||||
|
|
@ -31,7 +31,7 @@ pageClass: routes
|
|||
|
||||
### 用户投稿
|
||||
|
||||
<Route author="wdssmq" example="/acfun/user/video/14450522" path="/acfun/user/video/:id" :paramsDesc="['用户 UID']" radar="1"/>
|
||||
<Route author="wdssmq" example="/acfun/user/video/14450522" path="/acfun/user/video/:id" :paramsDesc="['用户 UID']" radar="1" rssbud="1"/>
|
||||
|
||||
## AGE 动漫
|
||||
|
||||
|
|
@ -43,7 +43,7 @@ pageClass: routes
|
|||
|
||||
### 動畫
|
||||
|
||||
<Route author="maple3142" example="/anime1/anime/2018年秋季/哥布林殺手" path="/anime1/anime/:time/:name" :paramsDesc="['时间', '动画名称']" radar="1">
|
||||
<Route author="maple3142" example="/anime1/anime/2018年秋季/哥布林殺手" path="/anime1/anime/:time/:name" :paramsDesc="['时间', '动画名称']" radar="1" rssbud="1">
|
||||
|
||||
时间和动画名称请自己从网址取得: `https://anime1.me/category/2018年秋季/刀劍神域-alicization`
|
||||
|
||||
|
|
@ -51,7 +51,7 @@ pageClass: routes
|
|||
|
||||
### 搜尋
|
||||
|
||||
<Route author="maple3142" example="/anime1/search/兔女郎學姊" path="/anime1/search/:keyword" :paramsDesc="['关键字']" radar="1"/>
|
||||
<Route author="maple3142" example="/anime1/search/兔女郎學姊" path="/anime1/search/:keyword" :paramsDesc="['关键字']" radar="1" rssbud="1"/>
|
||||
|
||||
## Animen 动漫平台
|
||||
|
||||
|
|
@ -294,7 +294,7 @@ pageClass: routes
|
|||
|
||||
### 漫画更新
|
||||
|
||||
<Route author="zytomorrow" path="/haimaoba/:id" example="/haimaoba/4026" :paramsDesc="['漫画id,漫画主页的地址栏中最后一位数字']" radar="1"/>
|
||||
<Route author="zytomorrow" path="/haimaoba/:id" example="/haimaoba/4026" :paramsDesc="['漫画id,漫画主页的地址栏中最后一位数字']" radar="1" rssbud="1"/>
|
||||
|
||||
## 看漫画
|
||||
|
||||
|
|
@ -318,13 +318,13 @@ pageClass: routes
|
|||
|
||||
### 漫画更新
|
||||
|
||||
<Route author="junfengP" path="/manxiaosi/book/:id" example="/manxiaosi/book/90" :paramsDesc="['漫画id,漫画主页的地址栏中']" radar="1"/>
|
||||
<Route author="junfengP" path="/manxiaosi/book/:id" example="/manxiaosi/book/90" :paramsDesc="['漫画id,漫画主页的地址栏中']" radar="1" rssbud="1"/>
|
||||
|
||||
## 三界异次元
|
||||
|
||||
### 三界异次元
|
||||
|
||||
<Route author="luyuhuang" example="/3ycy/home" path="/3ycy/home" radar="1"/>
|
||||
<Route author="luyuhuang" example="/3ycy/home" path="/3ycy/home" radar="1" rssbud="1"/>
|
||||
|
||||
## 紳士漫畫
|
||||
|
||||
|
|
@ -336,7 +336,7 @@ pageClass: routes
|
|||
|
||||
### 鼠绘漫画
|
||||
|
||||
<Route author="zytomorrow" path="/shuhui/comics/:id" example="/shuhui/comics/1" :paramsDesc="['漫画id,漫画主页的地址栏中最后一位数字']" radar="1"/>
|
||||
<Route author="zytomorrow" path="/shuhui/comics/:id" example="/shuhui/comics/1" :paramsDesc="['漫画id,漫画主页的地址栏中最后一位数字']" radar="1" rssbud="1"/>
|
||||
|
||||
## 忧郁的 loli
|
||||
|
||||
|
|
|
|||
18
docs/bbs.md
18
docs/bbs.md
|
|
@ -50,11 +50,11 @@ pageClass: routes
|
|||
|
||||
### 首頁帖子
|
||||
|
||||
<Route author="DIYgod" example="/dcard/posts/popular" path="/dcard/posts/:type?" :paramsDesc="['排序,popular 熱門;latest 最新,默認為 latest']" radar="1"/>
|
||||
<Route author="DIYgod" example="/dcard/posts/popular" path="/dcard/posts/:type?" :paramsDesc="['排序,popular 熱門;latest 最新,默認為 latest']" radar="1" rssbud="1"/>
|
||||
|
||||
### 板塊帖子
|
||||
|
||||
<Route author="HenryQW" example="/dcard/funny/popular" path="/dcard/:section/:type?" :paramsDesc="['板塊名稱,URL 中獲得', '排序,popular 熱門;latest 最新,默認為 latest']" radar="1"/>
|
||||
<Route author="HenryQW" example="/dcard/funny/popular" path="/dcard/:section/:type?" :paramsDesc="['板塊名稱,URL 中獲得', '排序,popular 熱門;latest 最新,默認為 latest']" radar="1" rssbud="1"/>
|
||||
|
||||
## Discuz
|
||||
|
||||
|
|
@ -86,7 +86,7 @@ pageClass: routes
|
|||
|
||||
### 主题贴
|
||||
|
||||
<Route author="mengx8" example="/etoland/star01" path="/etoland/:boardId" :paramsDesc="['板块 id,可在板块 URL 找到']" radar="1" />
|
||||
<Route author="mengx8" example="/etoland/star01" path="/etoland/:boardId" :paramsDesc="['板块 id,可在板块 URL 找到']" radar="1" rssbud="1"/>
|
||||
|
||||
## LearnKu
|
||||
|
||||
|
|
@ -112,11 +112,11 @@ pageClass: routes
|
|||
|
||||
### 分区帖子
|
||||
|
||||
<Route author="xyqfer" example="/nga/forum/489" path="/nga/forum/:fid/:recommend?" :paramsDesc="['分区 id, 可在分区主页 URL 找到, 没有 fid 时 stid 同样适用','是否只显示精华主题, 留空为否, 任意值为是']" radar="1"/>
|
||||
<Route author="xyqfer" example="/nga/forum/489" path="/nga/forum/:fid/:recommend?" :paramsDesc="['分区 id, 可在分区主页 URL 找到, 没有 fid 时 stid 同样适用','是否只显示精华主题, 留空为否, 任意值为是']" radar="1" rssbud="1"/>
|
||||
|
||||
### 帖子
|
||||
|
||||
<Route author="xyqfer" example="/nga/post/18449558" path="/nga/post/:tid" :paramsDesc="['帖子 id, 可在帖子 URL 找到']" radar="1"/>
|
||||
<Route author="xyqfer" example="/nga/post/18449558" path="/nga/post/:tid" :paramsDesc="['帖子 id, 可在帖子 URL 找到']" radar="1" rssbud="1"/>
|
||||
|
||||
## Quicker
|
||||
|
||||
|
|
@ -439,15 +439,15 @@ pageClass: routes
|
|||
|
||||
### 博客
|
||||
|
||||
<Route author="changlan" example="/wenxuecity/blog/43626" path="/wenxuecity/blog/:id" :paramsDesc="['博客 ID, 可在 URL 中找到']" radar="1" />
|
||||
<Route author="changlan" example="/wenxuecity/blog/43626" path="/wenxuecity/blog/:id" :paramsDesc="['博客 ID, 可在 URL 中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
### 最热主题
|
||||
|
||||
<Route author="changlan" example="/wenxuecity/hot/9" path="/wenxuecity/hot/:cid" :paramsDesc="['版面 ID, 可在 URL 中找到']" radar="1" />
|
||||
<Route author="changlan" example="/wenxuecity/hot/9" path="/wenxuecity/hot/:cid" :paramsDesc="['版面 ID, 可在 URL 中找到']" radar="1"/>
|
||||
|
||||
### 最新主题
|
||||
|
||||
<Route author="changlan" example="/wenxuecity/bbs/tzlc" path="/wenxuecity/bbs/:cat/:elite?" :paramsDesc="['版面名, 可在 URL 中找到', '是否精华区, 1 为精华区']" radar="1" />
|
||||
<Route author="changlan" example="/wenxuecity/bbs/tzlc" path="/wenxuecity/bbs/:cat/:elite?" :paramsDesc="['版面名, 可在 URL 中找到', '是否精华区, 1 为精华区']" radar="1" rssbud="1"/>
|
||||
|
||||
### 焦点新闻
|
||||
|
||||
|
|
@ -457,7 +457,7 @@ pageClass: routes
|
|||
|
||||
### 圈子
|
||||
|
||||
<Route author="DIYgod" example="/mi/bbs/board/18066617" path="/mi/bbs/board/:boardId" :paramsDesc="['圈子 id,可在圈子 URL 找到']" radar="1"/>
|
||||
<Route author="DIYgod" example="/mi/bbs/board/18066617" path="/mi/bbs/board/:boardId" :paramsDesc="['圈子 id,可在圈子 URL 找到']" radar="1" rssbud="1"/>
|
||||
|
||||
## 一亩三分地
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ pageClass: routes
|
|||
|
||||
### 文章更新
|
||||
|
||||
<Route author="hoilc" example="/google/sites/outlierseconomics" path="/google/sites/:id" :paramsDesc="['Site ID, 可在 URL 中找到']" radar="1" />
|
||||
<Route author="hoilc" example="/google/sites/outlierseconomics" path="/google/sites/:id" :paramsDesc="['Site ID, 可在 URL 中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
## Hedwig.pub
|
||||
|
||||
|
|
@ -102,7 +102,7 @@ pageClass: routes
|
|||
|
||||
### 文章
|
||||
|
||||
<Route author="changlan" example="/blogs/jianning" path="/blogs/jianning" radar="1"/>
|
||||
<Route author="changlan" example="/blogs/jianning" path="/blogs/jianning" radar="1" rssbud="1"/>
|
||||
|
||||
## 敬维博客
|
||||
|
||||
|
|
|
|||
|
|
@ -126,7 +126,7 @@ Behance 用户主页 URL 获取用户名,如 <https://www.behance.net/mishapet
|
|||
|
||||
### 推荐
|
||||
|
||||
<Route author="junbaor" example="/zcool/recommend/all" path="/zcool/recommend/:type" :paramsDesc="['推荐类型,详见下面的表格']" radar="1">
|
||||
<Route author="junbaor" example="/zcool/recommend/all" path="/zcool/recommend/:type" :paramsDesc="['推荐类型,详见下面的表格']" radar="1" rssbud="1">
|
||||
|
||||
推荐类型
|
||||
|
||||
|
|
@ -138,7 +138,7 @@ Behance 用户主页 URL 获取用户名,如 <https://www.behance.net/mishapet
|
|||
|
||||
### 作品总榜单
|
||||
|
||||
<Route author="mexunco" example="/zcool/top/design" path="/zcool/top/:type" :paramsDesc="['推荐类型,详见下面的表格']" radar="1">
|
||||
<Route author="mexunco" example="/zcool/top/design" path="/zcool/top/:type" :paramsDesc="['推荐类型,详见下面的表格']" radar="1" rssbud="1">
|
||||
|
||||
榜单类型
|
||||
|
||||
|
|
@ -150,7 +150,7 @@ Behance 用户主页 URL 获取用户名,如 <https://www.behance.net/mishapet
|
|||
|
||||
### 用户作品
|
||||
|
||||
<Route author="junbaor" example="/zcool/user/baiyong" path="/zcool/user/:uid" :paramsDesc="['个性域名前缀或者用户ID']" radar="1">
|
||||
<Route author="junbaor" example="/zcool/user/baiyong" path="/zcool/user/:uid" :paramsDesc="['个性域名前缀或者用户ID']" radar="1" rssbud="1">
|
||||
|
||||
例如:
|
||||
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@ RSSHub is an open source, easy to use, and extensible RSS feed aggregator, it's
|
|||
|
||||
RSSHub delivers millions of contents aggregated from all kinds of sources, our vibrant open source community is ensuring the deliver of RSSHub's new routes, new features and bug fixes.
|
||||
|
||||
RSSHub can be used with browser extension [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) and iOS auxiliary app [RSSBud](https://github.com/Cay-Zhang/RSSBud)
|
||||
|
||||
## Special Thanks
|
||||
|
||||
### Special Sponsors
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ Compatible with lists with an URL like <https://store.playstation.com/zh-hans-hk
|
|||
|
||||
### Game Product Price
|
||||
|
||||
<RouteEn author="MisteryMonster" example="/ps/product/UP9000-CUSA00552_00-THELASTOFUS00000" path="/ps/:lang/product/:gridName" :paramsDesc="['region','gridName from the product']" radar="1">
|
||||
<RouteEn author="MisteryMonster" example="/ps/product/UP9000-CUSA00552_00-THELASTOFUS00000" path="/ps/:lang/product/:gridName" :paramsDesc="['region','gridName from the product']" radar="1" rssbud="1">
|
||||
|
||||
Tested some countries, it should be work for most.
|
||||
|
||||
|
|
@ -92,17 +92,17 @@ Compatible with Product with an URL like <https://store.playstation.com/en-us/pr
|
|||
|
||||
### PlayStation Network user trophy
|
||||
|
||||
<RouteEn author="DIYgod" example="/ps/trophy/DIYgod_" path="/ps/trophy/:id" :paramsDesc="['User ID']" radar="1"/>
|
||||
<RouteEn author="DIYgod" example="/ps/trophy/DIYgod_" path="/ps/trophy/:id" :paramsDesc="['User ID']" radar="1" rssbud="1"/>
|
||||
|
||||
### PlayStation 4 System Update
|
||||
|
||||
<RouteEn author="Jeason0228" example="/ps/ps4updates/" path="/ps/ps4updates/" radar="1"/>
|
||||
<RouteEn author="Jeason0228" example="/ps/ps4updates/" path="/ps/ps4updates/" radar="1" rssbud="1"/>
|
||||
|
||||
## Steam
|
||||
|
||||
### Steam search
|
||||
|
||||
<RouteEn author="maple3142" example="/steam/search/specials=1&term=atelier" path="/steam/search/:params" :paramsDesc="['search parameters']" radar="1">
|
||||
<RouteEn author="maple3142" example="/steam/search/specials=1&term=atelier" path="/steam/search/:params" :paramsDesc="['search parameters']" radar="1" rssbud="1">
|
||||
|
||||
Get serach parameters from the URL.
|
||||
|
||||
|
|
@ -112,7 +112,7 @@ For instance, in `https://store.steampowered.com/search/?specials=1&term=atelier
|
|||
|
||||
### Steam news
|
||||
|
||||
<RouteEn author="maple3142" example="/steam/news/282800" path="/steam/news/:appids" :paramsDesc="['game id']" radar="1"/>
|
||||
<RouteEn author="maple3142" example="/steam/news/282800" path="/steam/news/:appids" :paramsDesc="['game id']" radar="1" rssbud="1"/>
|
||||
|
||||
## SteamGifts
|
||||
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ Official RSS: https://eztv.io/ezrss.xml
|
|||
|
||||
### Videos
|
||||
|
||||
<RouteEn author="Diygod junfengP" example="/javlibrary/videos/bestrated" path="/javlibrary/videos/:vtype" :paramsDesc="['video type']" radar="1" >
|
||||
<RouteEn author="Diygod junfengP" example="/javlibrary/videos/bestrated" path="/javlibrary/videos/:vtype" :paramsDesc="['video type']" radar="1" rssbud="1">
|
||||
|New Comments|New Release|New Entries|Most Wanted|Best Rated|
|
||||
|-----|------|------|-----|------|
|
||||
|update|newrelease|newentries|mostwanted|bestrated|
|
||||
|
|
@ -46,11 +46,11 @@ Official RSS: https://eztv.io/ezrss.xml
|
|||
|
||||
### Stars
|
||||
|
||||
<RouteEn author="Diygod junfengP" example="/javlibrary/stars/afisw" path="/javlibrary/stars/:sid" :paramsDesc="['star id, find it from link']" radar="1" />
|
||||
<RouteEn author="Diygod junfengP" example="/javlibrary/stars/afisw" path="/javlibrary/stars/:sid" :paramsDesc="['star id, find it from link']" radar="1" rssbud="1"/>
|
||||
|
||||
### Users
|
||||
|
||||
<RouteEn author="Diygod junfengP" example="/javlibrary/users/mangudai/userposts" path="/javlibrary/users/:uid/:utype" :paramsDesc="['user id','user choice, see table below']" radar="1" >
|
||||
<RouteEn author="Diygod junfengP" example="/javlibrary/users/mangudai/userposts" path="/javlibrary/users/:uid/:utype" :paramsDesc="['user id','user choice, see table below']" radar="1" rssbud="1">
|
||||
|User wanted|User watched|User owned|User posts|
|
||||
|-----|------|------|-----|
|
||||
|userwanted|userwatched|userowned|userposts|
|
||||
|
|
@ -58,7 +58,7 @@ Official RSS: https://eztv.io/ezrss.xml
|
|||
|
||||
### Bestreviews
|
||||
|
||||
<RouteEn author="DCJaous" example="/javlibrary/bestreviews" path="/javlibrary/bestreviews" radar="1" />
|
||||
<RouteEn author="DCJaous" example="/javlibrary/bestreviews" path="/javlibrary/bestreviews" radar="1" rssbud="1"/>
|
||||
|
||||
## Nyaa
|
||||
|
||||
|
|
|
|||
|
|
@ -109,19 +109,19 @@ Provides a better reading experience (full text articles) over the official one.
|
|||
|
||||
### Latest
|
||||
|
||||
<RouteEn author="xyqfer Cerebrater" example="/matters/latest" path="/matters/latest" radar="1"/>
|
||||
<RouteEn author="xyqfer Cerebrater" example="/matters/latest" path="/matters/latest" radar="1" rssbud="1"/>
|
||||
|
||||
### Hot
|
||||
|
||||
<RouteEn author="Cerebrater" example="/matters/hot" path="/matters/hot" radar="1"/>
|
||||
<RouteEn author="Cerebrater" example="/matters/hot" path="/matters/hot" radar="1" rssbud="1"/>
|
||||
|
||||
### Tags
|
||||
|
||||
<RouteEn author="Cerebrater" example="/matters/tags/VGFnOjk3Mg" path="/matters/tags/:tid" :paramsDesc="['Tag id, can be found in the url of the tag page']" radar="1"/>
|
||||
<RouteEn author="Cerebrater" example="/matters/tags/VGFnOjk3Mg" path="/matters/tags/:tid" :paramsDesc="['Tag id, can be found in the url of the tag page']" radar="1" rssbud="1"/>
|
||||
|
||||
### Author
|
||||
|
||||
<RouteEn author="Cerebrater" example="/matters/author/az" path="/matters/author/:uid" :paramsDesc="['Author id, can be found at author\'s homepage url']" radar="1"/>
|
||||
<RouteEn author="Cerebrater" example="/matters/author/az" path="/matters/author/:uid" :paramsDesc="['Author id, can be found at author\'s homepage url']" radar="1" rssbud="1"/>
|
||||
|
||||
## Nautilus
|
||||
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ Official Website: [https://www.ssm.gov.mo/apps1/PreventWuhanInfection/en.aspx](h
|
|||
|
||||
### HackerOne Hacker Activity
|
||||
|
||||
<RouteEn author="imlonghao" example="/hackerone/hacktivity" path="/hackerone/hacktivity" radar="1"/>
|
||||
<RouteEn author="imlonghao" example="/hackerone/hacktivity" path="/hackerone/hacktivity" radar="1" rssbud="1"/>
|
||||
|
||||
## Instapaper
|
||||
|
||||
|
|
@ -103,7 +103,7 @@ Official Website: [https://www.ssm.gov.mo/apps1/PreventWuhanInfection/en.aspx](h
|
|||
|
||||
### Track & Trace Service
|
||||
|
||||
<RouteEn author="tuzi3040" example="/japanpost/EJ123456789JP/en" path="/japanpost/:reqCode/:locale?" :paramsDesc="['Package Number', 'Language, default to japanese `ja`']" radar="1">
|
||||
<RouteEn author="tuzi3040" example="/japanpost/EJ123456789JP/en" path="/japanpost/:reqCode/:locale?" :paramsDesc="['Package Number', 'Language, default to japanese `ja`']" radar="1" rssbud="1">
|
||||
|
||||
| Japanese | English |
|
||||
| -------- | ------- |
|
||||
|
|
@ -154,7 +154,7 @@ Official Website: [https://www.ssm.gov.mo/apps1/PreventWuhanInfection/en.aspx](h
|
|||
|
||||
### Remote.work Job Information
|
||||
|
||||
<RouteEn author="luyuhuang" example="/remote-work/all" path="/remote-work/:caty?" :paramsDesc="['Job category, default to all']" radar="1">
|
||||
<RouteEn author="luyuhuang" example="/remote-work/all" path="/remote-work/:caty?" :paramsDesc="['Job category, default to all']" radar="1" rssbud="1">
|
||||
|
||||
| All Jobs | Development | Design | Operation | Product | Other | Marketing | Sales |
|
||||
| :------: | :---------: | :----: | :-------: | :-----: | :---: | :-------: | :---: |
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ pageClass: routes
|
|||
|
||||
### Daily Wallpaper
|
||||
|
||||
<RouteEn author="FHYunCai" example="/bing" path="/bing" radar="1"/>
|
||||
<RouteEn author="FHYunCai" example="/bing" path="/bing" radar="1" rssbud="1"/>
|
||||
|
||||
## Dilbert Comic Strip
|
||||
|
||||
|
|
@ -56,7 +56,7 @@ pageClass: routes
|
|||
|
||||
### Public Albums
|
||||
|
||||
<RouteEn author="hoilc" example="/google/album/msFFnAzKmQmWj76EA" path="/google/album/:id" :paramsDesc="['album ID, can be found in URL, for example, `https://photos.app.goo.gl/msFFnAzKmQmWj76EA` to `msFFnAzKmQmWj76EA`']" radar="1" />
|
||||
<RouteEn author="hoilc" example="/google/album/msFFnAzKmQmWj76EA" path="/google/album/:id" :paramsDesc="['album ID, can be found in URL, for example, `https://photos.app.goo.gl/msFFnAzKmQmWj76EA` to `msFFnAzKmQmWj76EA`']" radar="1"/>
|
||||
|
||||
## Konachan Anime Wallpapers
|
||||
|
||||
|
|
|
|||
|
|
@ -163,7 +163,7 @@ Refer to [#minecraft](/en/game.html#minecraft)
|
|||
|
||||
### New sponsors
|
||||
|
||||
<RouteEn author="DIYgod" example="/rsshub/sponsors" path="/rsshub/sponsors" radar="1"/>
|
||||
<RouteEn author="DIYgod" example="/rsshub/sponsors" path="/rsshub/sponsors" radar="1" rssbud="1"/>
|
||||
|
||||
## sketch.com
|
||||
|
||||
|
|
|
|||
|
|
@ -25,35 +25,35 @@ GitHub provides some official RSS feeds:
|
|||
|
||||
### User Repo
|
||||
|
||||
<RouteEn author="dragon-yuan" path="/github/repos/:user" example="/github/repos/DIYgod" :paramsDesc="['GitHub username']" radar="1" />
|
||||
<RouteEn author="dragon-yuan" path="/github/repos/:user" example="/github/repos/DIYgod" :paramsDesc="['GitHub username']" radar="1" rssbud="1"/>
|
||||
|
||||
### Trending
|
||||
|
||||
<RouteEn path="/github/trending/:since/:language?" example="/github/trending/daily/javascript" :paramsDesc="['time frame, available in [Trending page](https://github.com/trending/javascript?since=monthly) \'s URL, possible values are: daily, weekly or monthly', 'the feed language, available in [Trending page](https://github.com/trending/javascript?since=monthly) \'s URL']" radar="1" />
|
||||
<RouteEn path="/github/trending/:since/:language?" example="/github/trending/daily/javascript" :paramsDesc="['time frame, available in [Trending page](https://github.com/trending/javascript?since=monthly) \'s URL, possible values are: daily, weekly or monthly', 'the feed language, available in [Trending page](https://github.com/trending/javascript?since=monthly) \'s URL']" radar="1" rssbud="1"/>
|
||||
|
||||
### Repo Issues
|
||||
|
||||
<RouteEn author="HenryQW AndreyMZ" path="/github/issue/:user/:repo/:state?/:labels?" example="/github/issue/DIYgod/RSSHub/all/bug" :paramsDesc="['GitHub username', 'GitHub repo name', 'the state of the issues. Can be either `open`, `closed`, or `all`. Default: `open`.', 'a list of comma separated label names']" radar="1" />
|
||||
<RouteEn author="HenryQW AndreyMZ" path="/github/issue/:user/:repo/:state?/:labels?" example="/github/issue/DIYgod/RSSHub/all/bug" :paramsDesc="['GitHub username', 'GitHub repo name', 'the state of the issues. Can be either `open`, `closed`, or `all`. Default: `open`.', 'a list of comma separated label names']" radar="1" rssbud="1"/>
|
||||
|
||||
### Repo Pull Requests
|
||||
|
||||
<RouteEn author="hashman" example="/github/pull/DIYgod/RSSHub" path="/github/pull/:user/:repo" :paramsDesc="['User name', 'Repo name']" radar="1"/>
|
||||
<RouteEn author="hashman" example="/github/pull/DIYgod/RSSHub" path="/github/pull/:user/:repo" :paramsDesc="['User name', 'Repo name']" radar="1" rssbud="1"/>
|
||||
|
||||
### User Followers
|
||||
|
||||
<RouteEn author="HenryQW" path="/github/user/follower/:user" example="/github/user/followers/HenryQW" :paramsDesc="['GitHub username']" radar="1" />
|
||||
<RouteEn author="HenryQW" path="/github/user/follower/:user" example="/github/user/followers/HenryQW" :paramsDesc="['GitHub username']" radar="1" rssbud="1"/>
|
||||
|
||||
### Repo Stars
|
||||
|
||||
<RouteEn author="HenryQW" path="/github/stars/:user/:repo" example="/github/stars/DIYGod/RSSHub" :paramsDesc="['GitHub username', 'GitHub repo name']" radar="1" />
|
||||
<RouteEn author="HenryQW" path="/github/stars/:user/:repo" example="/github/stars/DIYGod/RSSHub" :paramsDesc="['GitHub username', 'GitHub repo name']" radar="1" rssbud="1"/>
|
||||
|
||||
### Repo Branches
|
||||
|
||||
<RouteEn author="max-arnold" example="/github/branches/DIYgod/RSSHub" path="/github/branches/:user/:repo" :paramsDesc="['User name', 'Repo name']" radar="1"/>
|
||||
<RouteEn author="max-arnold" example="/github/branches/DIYgod/RSSHub" path="/github/branches/:user/:repo" :paramsDesc="['User name', 'Repo name']" radar="1" rssbud="1"/>
|
||||
|
||||
### Files Commits
|
||||
|
||||
<RouteEn author="zengxs" example="/github/file/DIYgod/RSSHub/master/lib/router.js" path="/github/file/:user/:repo/:branch/:filepath+" :paramsDesc="['User name', 'Repo name', 'Branch name', 'File path']" radar="1">
|
||||
<RouteEn author="zengxs" example="/github/file/DIYgod/RSSHub/master/lib/router.js" path="/github/file/:user/:repo/:branch/:filepath+" :paramsDesc="['User name', 'Repo name', 'Branch name', 'File path']" radar="1" rssbud="1">
|
||||
|
||||
| User name | Repo name | Branch name | File path |
|
||||
| --------- | --------- | ----------- | --------------- |
|
||||
|
|
@ -81,11 +81,11 @@ GitHub provides some official RSS feeds:
|
|||
|
||||
### User Starred Repositories
|
||||
|
||||
<RouteEn author="LanceZhu" example="/github/starred_repos/DIYgod" path="/github/starred_repos/:user" :paramsDesc="['User name']" radar="1"/>
|
||||
<RouteEn author="LanceZhu" example="/github/starred_repos/DIYgod" path="/github/starred_repos/:user" :paramsDesc="['User name']" radar="1" rssbud="1"/>
|
||||
|
||||
### Repo Contributors
|
||||
|
||||
<RouteEn author="zoenglinghou" example="/github/contributors/DIYgod/RSSHub" path="/github/contributors/:user/:repo/:order?/:anon?" :paramsDesc="['User name','Repo name','Sort order by commit numbers, desc and asc (descending by default)','Show anonymous users. Defaults to no, use any values for yes.']" radar="1"/>
|
||||
<RouteEn author="zoenglinghou" example="/github/contributors/DIYgod/RSSHub" path="/github/contributors/:user/:repo/:order?/:anon?" :paramsDesc="['User name','Repo name','Sort order by commit numbers, desc and asc (descending by default)','Show anonymous users. Defaults to no, use any values for yes.']" radar="1" rssbud="1"/>
|
||||
|
||||
## GitLab
|
||||
|
||||
|
|
|
|||
|
|
@ -81,15 +81,15 @@ These feed do not include boosts (a.k.a. reblogs). RSSHub provides a feed for us
|
|||
|
||||
### User Bookmark
|
||||
|
||||
<RouteEn author="EYHN" path="/pixiv/user/bookmarks/:id" example="/pixiv/user/bookmarks/15288095" :paramsDesc="['user id, available in user\'s homepage URL']" radar="1" />
|
||||
<RouteEn author="EYHN" path="/pixiv/user/bookmarks/:id" example="/pixiv/user/bookmarks/15288095" :paramsDesc="['user id, available in user\'s homepage URL']" radar="1" rssbud="1"/>
|
||||
|
||||
### User Activity
|
||||
|
||||
<RouteEn author="EYHN" path="/pixiv/user/:id" example="/pixiv/user/15288095" :paramsDesc="['user id, available in user\'s homepage URL']" radar="1" />
|
||||
<RouteEn author="EYHN" path="/pixiv/user/:id" example="/pixiv/user/15288095" :paramsDesc="['user id, available in user\'s homepage URL']" radar="1" rssbud="1"/>
|
||||
|
||||
### Rankings
|
||||
|
||||
<RouteEn author="EYHN" path="/pixiv/ranking/:mode/:date?" example="/pixiv/ranking/week" :paramsDesc="['rank type', 'format: `2018-4-25`']" radar="1" >
|
||||
<RouteEn author="EYHN" path="/pixiv/ranking/:mode/:date?" example="/pixiv/ranking/week" :paramsDesc="['rank type', 'format: `2018-4-25`']" radar="1" rssbud="1">
|
||||
|
||||
| pixiv daily rank | pixiv weekly rank | pixiv monthly rank | pixiv male rank | pixiv female rank | pixiv original rank | pixiv rookie user rank |
|
||||
| ---------------- | ----------------- | ------------------ | --------------- | ----------------- | ------------------- | ---------------------- |
|
||||
|
|
@ -103,11 +103,11 @@ These feed do not include boosts (a.k.a. reblogs). RSSHub provides a feed for us
|
|||
|
||||
### Keyword
|
||||
|
||||
<RouteEn author="DIYgod" example="/pixiv/search/麻衣/popular/2" path="/pixiv/search/:keyword/:order?/:r18?" :paramsDesc="['keyword', 'rank mode, empty or other for time order, popular for popular order', 'filte R18 content, 0 to no filter, 1 to only not R18, 2 to only R18, default to 0']" radar="1"/>
|
||||
<RouteEn author="DIYgod" example="/pixiv/search/麻衣/popular/2" path="/pixiv/search/:keyword/:order?/:r18?" :paramsDesc="['keyword', 'rank mode, empty or other for time order, popular for popular order', 'filte R18 content, 0 to no filter, 1 to only not R18, 2 to only R18, default to 0']" radar="1" rssbud="1"/>
|
||||
|
||||
### Following timeline
|
||||
|
||||
<RouteEn author="ClarkeCheng" example="/pixiv/user/illustfollows" path="/pixiv/user/illustfollows" radar="1"/>
|
||||
<RouteEn author="ClarkeCheng" example="/pixiv/user/illustfollows" path="/pixiv/user/illustfollows" radar="1" rssbud="1"/>
|
||||
::: warning
|
||||
|
||||
Only for self-hosted
|
||||
|
|
@ -123,7 +123,7 @@ Only for self-hosted
|
|||
|
||||
### Channel
|
||||
|
||||
<RouteEn path="/telegram/channel/:username/:searchQuery?" example="/telegram/channel/awesomeDIYgod/%23DIYgod的豆瓣动态" :paramsDesc="['channel name', 'search query; replace `#` by `%23` for tag searching']" radar="1">
|
||||
<RouteEn path="/telegram/channel/:username/:searchQuery?" example="/telegram/channel/awesomeDIYgod/%23DIYgod的豆瓣动态" :paramsDesc="['channel name', 'search query; replace `#` by `%23` for tag searching']" radar="1" rssbud="1">
|
||||
|
||||
::: tip
|
||||
|
||||
|
|
@ -151,11 +151,11 @@ Due to Twitter API restrictions, the Twitter Routes currently supports tweets wi
|
|||
|
||||
### User timeline
|
||||
|
||||
<RouteEn path="/twitter/user/:id/:type?" example="/twitter/user/DIYgod" :paramsDesc="['user id', 'Extra options `exclude_replies` exclude replies,`exclude_rts` exclude retweets,`exclude_rts_replies` exclude replies and retweets, for default include all.']" radar="1" />
|
||||
<RouteEn path="/twitter/user/:id/:type?" example="/twitter/user/DIYgod" :paramsDesc="['user id', 'Extra options `exclude_replies` exclude replies,`exclude_rts` exclude retweets,`exclude_rts_replies` exclude replies and retweets, for default include all.']" radar="1" rssbud="1"/>
|
||||
|
||||
## User following timeline
|
||||
|
||||
<RouteEn author="DIYgod" example="/twitter/followings/DIYgod" path="/twitter/followings/:id" :paramsDesc="['user id']" radar="1">
|
||||
<RouteEn author="DIYgod" example="/twitter/followings/DIYgod" path="/twitter/followings/:id" :paramsDesc="['user id']" radar="1" rssbud="1">
|
||||
|
||||
::: warning
|
||||
|
||||
|
|
@ -167,19 +167,19 @@ This route requires Twitter token's corresponding id, therefore it's only availb
|
|||
|
||||
### List timeline
|
||||
|
||||
<RouteEn author="xyqfer" example="/twitter/list/ladyleet/Javascript" path="/twitter/list/:id/:name" :paramsDesc="['user name', 'list name']" radar="1"/>
|
||||
<RouteEn author="xyqfer" example="/twitter/list/ladyleet/javascript" path="/twitter/list/:id/:name" :paramsDesc="['user name', 'list name']" radar="1" rssbud="1"/>
|
||||
|
||||
### User likes
|
||||
|
||||
<RouteEn author="xyqfer" example="/twitter/likes/DIYgod" path="/twitter/likes/:id" :paramsDesc="['user name']" radar="1"/>
|
||||
<RouteEn author="xyqfer" example="/twitter/likes/DIYgod" path="/twitter/likes/:id" :paramsDesc="['user name']" radar="1" rssbud="1"/>
|
||||
|
||||
### Keyword
|
||||
|
||||
<RouteEn author="DIYgod" example="/twitter/keyword/RSSHub" path="/twitter/keyword/:keyword" :paramsDesc="['keyword']" radar="1"/>
|
||||
<RouteEn author="DIYgod" example="/twitter/keyword/RSSHub" path="/twitter/keyword/:keyword" :paramsDesc="['keyword']" radar="1" rssbud="1"/>
|
||||
|
||||
### Trends
|
||||
|
||||
<RouteEn author="sakamossan" example="/twitter/trends/23424856" path="/twitter/trends/:woeid?" :paramsDesc="['Yahoo! Where On Earth ID. default to woeid=1 (World Wide)']" radar="1"/>
|
||||
<RouteEn author="sakamossan" example="/twitter/trends/23424856" path="/twitter/trends/:woeid?" :paramsDesc="['Yahoo! Where On Earth ID. default to woeid=1 (World Wide)']" radar="1" rssbud="1"/>
|
||||
|
||||
## Youtube
|
||||
|
||||
|
|
@ -191,12 +191,12 @@ Tiny Tiny RSS will add `sandbox="allow-scripts"` to all iframe elements, as a re
|
|||
|
||||
### User
|
||||
|
||||
<RouteEn path="/youtube/user/:username/:embed?" example="/youtube/user/JFlaMusic" :paramsDesc="['YouTuber id', 'Default to embed the video, set to any value to disable embedding']" radar="1" />
|
||||
<RouteEn path="/youtube/user/:username/:embed?" example="/youtube/user/JFlaMusic" :paramsDesc="['YouTuber id', 'Default to embed the video, set to any value to disable embedding']" radar="1" rssbud="1"/>
|
||||
|
||||
### Channel
|
||||
|
||||
<RouteEn path="/youtube/channel/:id/:embed?" example="/youtube/channel/UCDwDMPOZfxVV0x_dz0eQ8KQ" :paramsDesc="['YouTube channel id', 'Default to embed the video, set to any value to disable embedding']" radar="1" />
|
||||
<RouteEn path="/youtube/channel/:id/:embed?" example="/youtube/channel/UCDwDMPOZfxVV0x_dz0eQ8KQ" :paramsDesc="['YouTube channel id', 'Default to embed the video, set to any value to disable embedding']" radar="1" rssbud="1"/>
|
||||
|
||||
### Playlist
|
||||
|
||||
<RouteEn path="/youtube/playlist/:id/:embed?" example="/youtube/playlist/PLqQ1RwlxOgeLTJ1f3fNMSwhjVgaWKo_9Z" :paramsDesc="['YouTube playlist id', 'Default to embed the video, set to any value to disable embedding']" radar="1" />
|
||||
<RouteEn path="/youtube/playlist/:id/:embed?" example="/youtube/playlist/PLqQ1RwlxOgeLTJ1f3fNMSwhjVgaWKo_9Z" :paramsDesc="['YouTube playlist id', 'Default to embed the video, set to any value to disable embedding']" radar="1" rssbud="1"/>
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ Site
|
|||
|
||||
### Topics
|
||||
|
||||
<RouteEn author="zoenglinghou" example="/apnews/topics/apf-topnews" path="/apnews/topics/:topic" :paramsDesc="['Topic name,can be found in URL. For example: the topic name of AP Top News [https://apnews.com/apf-topnews](https://apnews.com/apf-topnews) is `apf-topnews`']" radar="1"/>
|
||||
<RouteEn author="zoenglinghou" example="/apnews/topics/apf-topnews" path="/apnews/topics/:topic" :paramsDesc="['Topic name,can be found in URL. For example: the topic name of AP Top News [https://apnews.com/apf-topnews](https://apnews.com/apf-topnews) is `apf-topnews`']" radar="1" rssbud="1"/>
|
||||
|
||||
## BBC
|
||||
|
||||
|
|
@ -100,7 +100,7 @@ Refer to [Chicago Tribune's feed page](https://www.chicagotribune.com/about/ct-c
|
|||
|
||||
### News
|
||||
|
||||
<RouteEn author="luyuhuang" example="/chinatimes/realtimenews" path="/chinatimes/:caty" :paramsDesc="['category']" radar="1">
|
||||
<RouteEn author="luyuhuang" example="/chinatimes/realtimenews" path="/chinatimes/:caty" :paramsDesc="['category']" radar="1" rssbud="1">
|
||||
|
||||
| realtimenews | politic | opinion | life | star | money | society | hottopic | tube | world | armament | chinese | fashion | sports | technologynews | travel | album |
|
||||
| -------------- | ------- | ------- | ---- | ------- | ------- | ------- | ---------- | ------ | ----- | -------- | ----------------- | ------- | ------ | --------------- | ------ | ------- |
|
||||
|
|
|
|||
|
|
@ -28,18 +28,18 @@ pageClass: routes
|
|||
|
||||
### College of Electrical and Computer Engineering News
|
||||
|
||||
<RouteEn author="gammapi" example="/umass/amherst/ecenews" path="/umass/amherst/ecenews" radar="1"/>
|
||||
<RouteEn author="gammapi" example="/umass/amherst/ecenews" path="/umass/amherst/ecenews" radar="1" rssbud="1"/>
|
||||
|
||||
### College of Information & Computer Sciences News
|
||||
|
||||
<RouteEn author="gammapi" example="/umass/amherst/csnews" path="/umass/amherst/csnews" radar="1"/>
|
||||
<RouteEn author="gammapi" example="/umass/amherst/csnews" path="/umass/amherst/csnews" radar="1" rssbud="1"/>
|
||||
|
||||
### International Programs Office
|
||||
|
||||
#### Events
|
||||
|
||||
<Route author="gammapi" example="/umass/amherst/ipostories" path="/umass/amherst/ipostories" radar="1"/>
|
||||
<Route author="gammapi" example="/umass/amherst/ipostories" path="/umass/amherst/ipostories" radar="1" rssbud="1"/>
|
||||
|
||||
#### Featured Stories
|
||||
|
||||
<Route author="gammapi" example="/umass/amherst/ipoevents" path="/umass/amherst/ipoevents" radar="1"/>
|
||||
<Route author="gammapi" example="/umass/amherst/ipoevents" path="/umass/amherst/ipoevents" radar="1" rssbud="1"/>
|
||||
|
|
|
|||
24
docs/game.md
24
docs/game.md
|
|
@ -138,7 +138,7 @@ pageClass: routes
|
|||
|
||||
### PlayStation Store 游戏列表
|
||||
|
||||
<Route author="DIYgod" example="/ps/list/STORE-MSF86012-PLUS_FTT_CONTENT" path="/ps/list/:gridName" :paramsDesc="['列表的 grid 名']" radar="1">
|
||||
<Route author="DIYgod" example="/ps/list/STORE-MSF86012-PLUS_FTT_CONTENT" path="/ps/list/:gridName" :paramsDesc="['列表的 grid 名']" radar="1" rssbud="1">
|
||||
|
||||
适用于 URL 如 <https://store.playstation.com/zh-hans-hk/grid/STORE-MSF86012-PLUS_FTT_CONTENT> 的列表页,比如 [PSN 每月免费游戏](https://store.playstation.com/zh-hans-hk/grid/STORE-MSF86012-PLUS_FTT_CONTENT) 的 gridName 为 STORE-MSF86012-PLUS_FTT_CONTENT
|
||||
|
||||
|
|
@ -146,7 +146,7 @@ pageClass: routes
|
|||
|
||||
### PlayStation Store 游戏折扣 | 价格
|
||||
|
||||
<Route author="MisteryMonster" example="/ps/product/UP9000-CUSA00552_00-THELASTOFUS00000" path="/ps/:lang/product/:gridName" :paramsDesc="['地区语言','游戏的 grid 名']" radar="1">
|
||||
<Route author="MisteryMonster" example="/ps/product/UP9000-CUSA00552_00-THELASTOFUS00000" path="/ps/:lang/product/:gridName" :paramsDesc="['地区语言','游戏的 grid 名']" radar="1" rssbud="1">
|
||||
|
||||
地区语言如 `zh-hans-hk` 代表香港区简体中文, `zh-hant-tw` 为台湾繁体中文。不同地区游戏 gridName 不同,非中文地区使用英文提示。
|
||||
|
||||
|
|
@ -158,11 +158,11 @@ pageClass: routes
|
|||
|
||||
### PlayStation Network 用户奖杯
|
||||
|
||||
<Route author="DIYgod" example="/ps/trophy/DIYgod_" path="/ps/trophy/:id" :paramsDesc="['用户 ID']" radar="1"/>
|
||||
<Route author="DIYgod" example="/ps/trophy/DIYgod_" path="/ps/trophy/:id" :paramsDesc="['用户 ID']" radar="1" rssbud="1"/>
|
||||
|
||||
### PlayStation 4 系统更新纪录
|
||||
|
||||
<Route author="Jeason0228" example="/ps/ps4updates/" path="/ps/ps4updates/" radar="1"/>
|
||||
<Route author="Jeason0228" example="/ps/ps4updates/" path="/ps/ps4updates/" radar="1" rssbud="1"/>
|
||||
|
||||
## psnine
|
||||
|
||||
|
|
@ -206,7 +206,7 @@ pageClass: routes
|
|||
|
||||
### Steam search
|
||||
|
||||
<Route author="maple3142" example="/steam/search/specials=1&term=atelier" path="/steam/search/:params" :paramsDesc="['搜寻参数']" radar="1">
|
||||
<Route author="maple3142" example="/steam/search/specials=1&term=atelier" path="/steam/search/:params" :paramsDesc="['搜寻参数']" radar="1" rssbud="1">
|
||||
|
||||
参数 params 请从 Steam 的 URL 取得
|
||||
|
||||
|
|
@ -216,7 +216,7 @@ Example: `https://store.steampowered.com/search/?specials=1&term=atelier` 中的
|
|||
|
||||
### Steam news
|
||||
|
||||
<Route author="maple3142" example="/steam/news/282800" path="/steam/news/:appids" :paramsDesc="['游戏 id']" radar="1"/>
|
||||
<Route author="maple3142" example="/steam/news/282800" path="/steam/news/:appids" :paramsDesc="['游戏 id']" radar="1" rssbud="1"/>
|
||||
|
||||
## SteamGifts
|
||||
|
||||
|
|
@ -308,11 +308,11 @@ Example: `https://store.steampowered.com/search/?specials=1&term=atelier` 中的
|
|||
|
||||
### 更新情报
|
||||
|
||||
<Route author="DIYgod" example="/mhw/update" path="/mhw/update" radar="1"/>
|
||||
<Route author="DIYgod" example="/mhw/update" path="/mhw/update" radar="1" rssbud="1"/>
|
||||
|
||||
### 最新消息
|
||||
|
||||
<Route author="DIYgod" example="/mhw/news" path="/mhw/news" radar="1"/>
|
||||
<Route author="DIYgod" example="/mhw/news" path="/mhw/news" radar="1" rssbud="1"/>
|
||||
|
||||
## 剑网 3
|
||||
|
||||
|
|
@ -374,7 +374,7 @@ Example: `https://store.steampowered.com/search/?specials=1&term=atelier` 中的
|
|||
|
||||
### 元素文章
|
||||
|
||||
<Route author="hoilc" example="/cowlevel/element/1370" path="/cowlevel/element/:id" :paramsDesc="['元素 ID, 可在 URL 中找到']" radar="1" />
|
||||
<Route author="hoilc" example="/cowlevel/element/1370" path="/cowlevel/element/:id" :paramsDesc="['元素 ID, 可在 URL 中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
## 网易大神
|
||||
|
||||
|
|
@ -446,15 +446,15 @@ Example: `https://store.steampowered.com/search/?specials=1&term=atelier` 中的
|
|||
|
||||
### 游戏时光新闻
|
||||
|
||||
<Route author="MyFaith" example="/vgtime/news" path="/vgtime/news" radar="1"/>
|
||||
<Route author="MyFaith" example="/vgtime/news" path="/vgtime/news" radar="1" rssbud="1"/>
|
||||
|
||||
### 游戏时光游戏发售表
|
||||
|
||||
<Route author="MyFaith" example="/vgtime/release" path="/vgtime/release" radar="1"/>
|
||||
<Route author="MyFaith" example="/vgtime/release" path="/vgtime/release" radar="1" rssbud="1"/>
|
||||
|
||||
### 关键词资讯
|
||||
|
||||
<Route author="DIYgod" example="/vgtime/keyword/怪物猎人" path="/vgtime/keyword/:keyword" radar="1"/>
|
||||
<Route author="DIYgod" example="/vgtime/keyword/怪物猎人" path="/vgtime/keyword/:keyword" radar="1" rssbud="1"/>
|
||||
|
||||
## 游研社
|
||||
|
||||
|
|
|
|||
|
|
@ -59,11 +59,11 @@ pageClass: routes
|
|||
|
||||
### 列表
|
||||
|
||||
<Route author="y2361547758" example="/gov/nppa/317" path="/gov/nppa/:channel" :paramsDesc="['栏目名id']" radar="1" />
|
||||
<Route author="y2361547758" example="/gov/nppa/317" path="/gov/nppa/:channel" :paramsDesc="['栏目名id']" radar="1" rssbud="1"/>
|
||||
|
||||
### 详情
|
||||
|
||||
<Route author="y2361547758" example="/gov/nppa/318/45948" path="/gov/nppa/:channel/:content" :paramsDesc="['栏目名id', '文章id']" radar="1" />
|
||||
<Route author="y2361547758" example="/gov/nppa/318/45948" path="/gov/nppa/:channel/:content" :paramsDesc="['栏目名id', '文章id']" radar="1" rssbud="1"/>
|
||||
|
||||
## 联合国
|
||||
|
||||
|
|
|
|||
|
|
@ -569,6 +569,16 @@ ctx.state.data = {
|
|||
|
||||
请注意,`target` 方法运行在沙盒中,对 `document` 的任何修改都不会反应到页面中
|
||||
|
||||
### RSSBud
|
||||
|
||||
[RSSBud](https://github.com/Cay-Zhang/RSSBud) 支持 RSSHub Radar 的规则并且也会自动更新,但是请注意:
|
||||
|
||||
- 在 Radar 的规则中使用 `'.'` 子域名可以让 RSSBud 适配 `m` / `mobile` 等常见移动端子域名
|
||||
|
||||
- 在 `target` 中使用 `document` 的规则并不适用 RSSBud:RSSBud 并不是一个浏览器插件,他只获取并分析网站的 URL
|
||||
|
||||
### 补充文档
|
||||
|
||||
在 RSSHub 文档里给对应路径加上 `radar="1"`,这样就会显示一个 `支持浏览器扩展` 标记
|
||||
|
||||
如果也支持 RSSBud,再加上 `rssbud="1"`,会显示 `支持 RSSBud` 标记
|
||||
|
|
|
|||
|
|
@ -245,7 +245,7 @@ pageClass: routes
|
|||
|
||||
### 影片
|
||||
|
||||
<Route author="Diygod junfengP" example="/javlibrary/videos/bestrated" path="/javlibrary/videos/:vtype" :paramsDesc="['影片类型']" radar="1" >
|
||||
<Route author="Diygod junfengP" example="/javlibrary/videos/bestrated" path="/javlibrary/videos/:vtype" :paramsDesc="['影片类型']" radar="1" rssbud="1">
|
||||
|新话题|新发行|新加入|最想要|高评价|
|
||||
|-----|------|------|-----|------|
|
||||
|update|newrelease|newentries|mostwanted|bestrated|
|
||||
|
|
@ -253,11 +253,11 @@ pageClass: routes
|
|||
|
||||
### 影星
|
||||
|
||||
<Route author="Diygod junfengP" example="/javlibrary/stars/afisw" path="/javlibrary/stars/:sid" :paramsDesc="['影星id,从链接上获取']" radar="1" />
|
||||
<Route author="Diygod junfengP" example="/javlibrary/stars/afisw" path="/javlibrary/stars/:sid" :paramsDesc="['影星id,从链接上获取']" radar="1" rssbud="1"/>
|
||||
|
||||
### 用户
|
||||
|
||||
<Route author="Diygod junfengP" example="/javlibrary/users/mangudai/userposts" path="/javlibrary/users/:uid/:utype" :paramsDesc="['用户id,即用户名称','用户选项,见下表']" radar="1" >
|
||||
<Route author="Diygod junfengP" example="/javlibrary/users/mangudai/userposts" path="/javlibrary/users/:uid/:utype" :paramsDesc="['用户id,即用户名称','用户选项,见下表']" radar="1" rssbud="1">
|
||||
|想要的|看过的|拥有的|发表的文章|
|
||||
|-----|------|------|-----|
|
||||
|userwanted|userwatched|userowned|userposts|
|
||||
|
|
@ -265,21 +265,21 @@ pageClass: routes
|
|||
|
||||
### 最佳评论
|
||||
|
||||
<Route author="DCJaous" example="/javlibrary/bestreviews" path="/javlibrary/bestreviews" radar="1" />
|
||||
<Route author="DCJaous" example="/javlibrary/bestreviews" path="/javlibrary/bestreviews" radar="1" rssbud="1"/>
|
||||
|
||||
## Last.fm
|
||||
|
||||
### 用户播放记录
|
||||
|
||||
<Route author="hoilc" example="/lastfm/recent/yeFoenix" path="/lastfm/recent/:user" :paramsDesc="['Last.fm 用户名']" radar="1" />
|
||||
<Route author="hoilc" example="/lastfm/recent/yeFoenix" path="/lastfm/recent/:user" :paramsDesc="['Last.fm 用户名']" radar="1" rssbud="1"/>
|
||||
|
||||
### 用户 Love 记录
|
||||
|
||||
<Route author="hoilc" example="/lastfm/loved/yeFoenix" path="/lastfm/loved/:user" :paramsDesc="['Last.fm 用户名']" radar="1" />
|
||||
<Route author="hoilc" example="/lastfm/loved/yeFoenix" path="/lastfm/loved/:user" :paramsDesc="['Last.fm 用户名']" radar="1" rssbud="1"/>
|
||||
|
||||
### 站内 Top 榜单
|
||||
|
||||
<Route author="hoilc" example="/lastfm/top/spain" path="/lastfm/top/:country?" :paramsDesc="['国家或地区, 需要符合`ISO 3166-1`的英文全称, 可参考`https://zh.wikipedia.org/wiki/ISO_3166-1二位字母代码#正式分配代码`']" radar="1" />
|
||||
<Route author="hoilc" example="/lastfm/top/spain" path="/lastfm/top/:country?" :paramsDesc="['国家或地区, 需要符合`ISO 3166-1`的英文全称, 可参考`https://zh.wikipedia.org/wiki/ISO_3166-1二位字母代码#正式分配代码`']" radar="1" rssbud="1"/>
|
||||
|
||||
## Mp4Ba
|
||||
|
||||
|
|
@ -311,19 +311,19 @@ pageClass: routes
|
|||
|
||||
### 全站最近更新
|
||||
|
||||
<Route author="hoilc" example="/mqube/latest" path="/mqube/latest" radar="1" />
|
||||
<Route author="hoilc" example="/mqube/latest" path="/mqube/latest" radar="1" rssbud="1"/>
|
||||
|
||||
### 全站每日排行
|
||||
|
||||
<Route author="hoilc" example="/mqube/top" path="/mqube/top" radar="1" />
|
||||
<Route author="hoilc" example="/mqube/top" path="/mqube/top" radar="1" rssbud="1"/>
|
||||
|
||||
### 个人最近更新
|
||||
|
||||
<Route author="hoilc" example="/mqube/user/mukamui_v_p" path="/mqube/user/:user" :paramsDesc="['用户 ID, 可以在个人资料页的 URL 中找到']" radar="1" />
|
||||
<Route author="hoilc" example="/mqube/user/mukamui_v_p" path="/mqube/user/:user" :paramsDesc="['用户 ID, 可以在个人资料页的 URL 中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
### 标签最近更新
|
||||
|
||||
<Route author="hoilc" example="/mqube/tag/UTAU" path="/mqube/tag/:tag" :paramsDesc="['标签名称, 可参考`https://mqube.net/search/tag`']" radar="1" />
|
||||
<Route author="hoilc" example="/mqube/tag/UTAU" path="/mqube/tag/:tag" :paramsDesc="['标签名称, 可参考`https://mqube.net/search/tag`']" radar="1" rssbud="1"/>
|
||||
|
||||
## Nyaa
|
||||
|
||||
|
|
@ -515,19 +515,19 @@ pageClass: routes
|
|||
|
||||
### 影视剧集更新
|
||||
|
||||
<Route author="saintwinkle" example="/ddrk/update/silicon-valley/6" path="/ddrk/update/:name/:season?" :paramsDesc="['影视名称,可以在 URL 中找到','季数,可以在 URL 中找到,剧集没有分季时不用填写,或是默认输出第一季的内容']" radar="1" />
|
||||
<Route author="saintwinkle" example="/ddrk/update/silicon-valley/6" path="/ddrk/update/:name/:season?" :paramsDesc="['影视名称,可以在 URL 中找到','季数,可以在 URL 中找到,剧集没有分季时不用填写,或是默认输出第一季的内容']" radar="1" rssbud="1"/>
|
||||
|
||||
### 首页
|
||||
|
||||
<Route author="hoilc" example="/ddrk/index" path="/ddrk/index" radar="1" />
|
||||
<Route author="hoilc" example="/ddrk/index" path="/ddrk/index" radar="1" rssbud="1"/>
|
||||
|
||||
### 分类
|
||||
|
||||
<Route author="hoilc" example="/ddrk/category/jp-drama" path="/ddrk/category/:category" :paramsDesc="['分类 ID, 可在 URL 中找到, 注意, 如果有两级分类, 只需要填写第二级即可']" radar="1" />
|
||||
<Route author="hoilc" example="/ddrk/category/jp-drama" path="/ddrk/category/:category" :paramsDesc="['分类 ID, 可在 URL 中找到, 注意, 如果有两级分类, 只需要填写第二级即可']" radar="1" rssbud="1"/>
|
||||
|
||||
### 标签
|
||||
|
||||
<Route author="hoilc" example="/ddrk/tag/石原里美" path="/ddrk/tag/:tag" :paramsDesc="['标签名, 可在 URL 中找到']" radar="1" />
|
||||
<Route author="hoilc" example="/ddrk/tag/石原里美" path="/ddrk/tag/:tag" :paramsDesc="['标签名, 可在 URL 中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
## 电影首发站
|
||||
|
||||
|
|
@ -603,7 +603,7 @@ pageClass: routes
|
|||
|
||||
### 最新资源
|
||||
|
||||
<Route author="greatcodeeer" example="/pianyuan" path="/pianyuan" radar="1"/>
|
||||
<Route author="greatcodeeer" example="/pianyuan" path="/pianyuan" radar="1" rssbud="1"/>
|
||||
|
||||
## 飘花电影网
|
||||
|
||||
|
|
@ -675,7 +675,7 @@ pageClass: routes
|
|||
|
||||
### 专辑
|
||||
|
||||
<Route author="lengthmin jjeejj prnake" example="/ximalaya/album/299146" path="/ximalaya/album/:id/:all?" :paramsDesc="['专辑 id, 可在对应专辑页面的 URL 中找到','是否需要获取全部节目,默认不获取,填入该字段则视为获取']" supportPodcast="1" radar="1">
|
||||
<Route author="lengthmin jjeejj prnake" example="/ximalaya/album/299146" path="/ximalaya/album/:id/:all?" :paramsDesc="['专辑 id, 可在对应专辑页面的 URL 中找到','是否需要获取全部节目,默认不获取,填入该字段则视为获取']" supportPodcast="1" radar="1" rssbud="1">
|
||||
|
||||
::: warning 注意
|
||||
专辑 id 是跟在**分类拼音**后的那个 id, 不要输成某集的 id 了
|
||||
|
|
@ -731,7 +731,7 @@ pageClass: routes
|
|||
|
||||
### 更新列表
|
||||
|
||||
<Route author="mengx8" example="/zhuixinfan/list" path="/zhuixinfan/list" radar="1" />
|
||||
<Route author="mengx8" example="/zhuixinfan/list" path="/zhuixinfan/list" radar="1" rssbud="1"/>
|
||||
|
||||
## 字幕库
|
||||
|
||||
|
|
|
|||
|
|
@ -234,7 +234,7 @@ Tag
|
|||
|
||||
### 分类资讯
|
||||
|
||||
<Route author="luyuhuang" example="/ithome/it" path="/ithome/:caty" :paramsDesc="['类别']" radar="1">
|
||||
<Route author="luyuhuang" example="/ithome/it" path="/ithome/:caty" :paramsDesc="['类别']" radar="1" rssbud="1">
|
||||
|
||||
| it | soft | win10 | iphone | ipad | android | digi | next |
|
||||
| ------- | -------- | ---------- | ----------- | --------- | ------------ | -------- | -------- |
|
||||
|
|
@ -244,7 +244,7 @@ Tag
|
|||
|
||||
### 热榜
|
||||
|
||||
<Route author="immmortal luyuhuang" example="/ithome/ranking/24h" path="/ithome/ranking/:type" :paramsDesc="['类别']" radar="1">
|
||||
<Route author="immmortal luyuhuang" example="/ithome/ranking/24h" path="/ithome/ranking/:type" :paramsDesc="['类别']" radar="1" rssbud="1">
|
||||
|
||||
| 24h | 7days | monthly |
|
||||
| ------------- | -------- | ------- |
|
||||
|
|
@ -296,19 +296,19 @@ Tag
|
|||
|
||||
### 最新排序
|
||||
|
||||
<Route author="xyqfer Cerebrater" example="/matters/latest" path="/matters/latest" radar="1"/>
|
||||
<Route author="xyqfer Cerebrater" example="/matters/latest" path="/matters/latest" radar="1" rssbud="1"/>
|
||||
|
||||
### 熱門文章
|
||||
|
||||
<Route author="Cerebrater" example="/matters/hot" path="/matters/hot" radar="1"/>
|
||||
<Route author="Cerebrater" example="/matters/hot" path="/matters/hot" radar="1" rssbud="1"/>
|
||||
|
||||
### 标签
|
||||
|
||||
<Route author="Cerebrater" example="/matters/tags/VGFnOjk3Mg" path="/matters/tags/:tid" :paramsDesc="['標籤 id,可在標籤所在的 URL 找到']" radar="1"/>
|
||||
<Route author="Cerebrater" example="/matters/tags/VGFnOjk3Mg" path="/matters/tags/:tid" :paramsDesc="['標籤 id,可在標籤所在的 URL 找到']" radar="1" rssbud="1"/>
|
||||
|
||||
### 作者
|
||||
|
||||
<Route author="Cerebrater" example="/matters/author/az" path="/matters/author/:uid" :paramsDesc="['作者 id,可在作者主頁的 URL 找到']" radar="1"/>
|
||||
<Route author="Cerebrater" example="/matters/author/az" path="/matters/author/:uid" :paramsDesc="['作者 id,可在作者主頁的 URL 找到']" radar="1" rssbud="1"/>
|
||||
|
||||
## MIT 科技评论
|
||||
|
||||
|
|
@ -769,7 +769,7 @@ area 分区选项
|
|||
|
||||
### 标签,栏目,分类
|
||||
|
||||
<Route author="WenhuWee emdoe SivaGao HenryQW" example="/qdaily/column/59" path="/qdaily/:type/:id" :paramsDesc="['类型,见下表', '对应 id,可在 URL 找到']" radar="1">
|
||||
<Route author="WenhuWee emdoe SivaGao HenryQW" example="/qdaily/column/59" path="/qdaily/:type/:id" :paramsDesc="['类型,见下表', '对应 id,可在 URL 找到']" radar="1" rssbud="1">
|
||||
|
||||
| 标签 | 栏目 | 分类 |
|
||||
| ---- | ------ | -------- |
|
||||
|
|
@ -1385,7 +1385,7 @@ area 分区选项
|
|||
|
||||
### 公众号栏目 (非推送 & 历史消息)
|
||||
|
||||
<Route author="MisteryMonster" example="/wechat/mp/homepage/MzA3MDM3NjE5NQ==/16" path="/wechat/mp/homepage/:biz/:hid/:cid?" :paramsDesc="['公众号id', '分页id', '页内栏目']" radar="1" anticrawler="1">
|
||||
<Route author="MisteryMonster" example="/wechat/mp/homepage/MzA3MDM3NjE5NQ==/16" path="/wechat/mp/homepage/:biz/:hid/:cid?" :paramsDesc="['公众号id', '分页id', '页内栏目']" radar="1" rssbud="1" anticrawler="1">
|
||||
|
||||
只适用拥有首页模板 (分享链接带有 homepage) 的公众号。例如从公众号分享出来的链接为 <https://mp.weixin.qq.com/mp/homepage?__biz=MzA3MDM3NjE5NQ==&hid=4>,`biz` 为 `MzA3MDM3NjE5NQ==`,`hid` 为 `4`。
|
||||
|
||||
|
|
@ -1395,7 +1395,7 @@ area 分区选项
|
|||
|
||||
### 公众号文章话题 Tag
|
||||
|
||||
<Route author="MisteryMonster" example="/wechat/mp/msgalbum/MzA3MDM3NjE5NQ==/1375870284640911361" path="/wechat/mp/msgalbum/:biz/:aid" :paramsDesc="['公众号id', 'Tag id', ]" radar="1" anticrawler="1">
|
||||
<Route author="MisteryMonster" example="/wechat/mp/msgalbum/MzA3MDM3NjE5NQ==/1375870284640911361" path="/wechat/mp/msgalbum/:biz/:aid" :paramsDesc="['公众号id', 'Tag id', ]" radar="1" rssbud="1" anticrawler="1">
|
||||
|
||||
一些公众号(如看理想)会在微信文章里添加 Tag ,点入 Tag 的链接如 <https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzA3MDM3NjE5NQ==&action=getalbum&album_id=1375870284640911361>,其中`biz` 为 `MzA3MDM3NjE5NQ==`,`aid` 为 `1375870284640911361`。
|
||||
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ pageClass: routes
|
|||
|
||||
### HackerOne Hacker Activity
|
||||
|
||||
<Route author="imlonghao" example="/hackerone/hacktivity" path="/hackerone/hacktivity" radar="1"/>
|
||||
<Route author="imlonghao" example="/hackerone/hacktivity" path="/hackerone/hacktivity" radar="1" rssbud="1"/>
|
||||
|
||||
## Instapaper
|
||||
|
||||
|
|
@ -208,10 +208,10 @@ board 和 build 可在[这里](http://api.ineal.me/tss/status)查看
|
|||
|
||||
### 最近更新
|
||||
|
||||
<Route author="LogicJake" example="/wegene/newest" path="/wegene/newest" radar="1"/>
|
||||
<Route author="LogicJake" example="/wegene/newest" path="/wegene/newest" radar="1" rssbud="1"/>
|
||||
### 栏目
|
||||
|
||||
<Route author="LogicJake" example="/wegene/column/all/all" path="/wegene/column/:type/:category" :paramsDesc="['栏目类型,all(全部项目) 或 weapp(专业版)','栏目分类']" radar="1">
|
||||
<Route author="LogicJake" example="/wegene/column/all/all" path="/wegene/column/:type/:category" :paramsDesc="['栏目类型,all(全部项目) 或 weapp(专业版)','栏目分类']" radar="1" rssbud="1">
|
||||
|
||||
:::
|
||||
type 为 all 时,category 参数不支持 cost 和 free
|
||||
|
|
@ -330,7 +330,7 @@ type 为 all 时,category 参数不支持 cost 和 free
|
|||
|
||||
### 通知
|
||||
|
||||
<Route author="Derekmini markmingjie" example="/csc/notice/lxtz" path="/csc/notice/:type?" :paramsDesc="['分类, 默认为 `lxtz`']" radar="1">
|
||||
<Route author="Derekmini markmingjie" example="/csc/notice/lxtz" path="/csc/notice/:type?" :paramsDesc="['分类, 默认为 `lxtz`']" radar="1" rssbud="1">
|
||||
|
||||
| 遴选通知 | 综合项目专栏 | 常见问题解答 | 录取公告 | 新闻资讯 | 新闻公告 |
|
||||
| -------- | ------------ | ------------ | -------- | -------- | -------- |
|
||||
|
|
@ -342,7 +342,7 @@ type 为 all 时,category 参数不支持 cost 和 free
|
|||
|
||||
### 新闻通知
|
||||
|
||||
<Route author="Derekmini" example="/nsfc/news/jjyw" path="/nsfc/news/:type?" :paramsDesc="['分类, 默认为 `jjyw`']" radar="1">
|
||||
<Route author="Derekmini" example="/nsfc/news/jjyw" path="/nsfc/news/:type?" :paramsDesc="['分类, 默认为 `jjyw`']" radar="1" rssbud="1">
|
||||
|
||||
| 基金要闻 | 通知公告 | 资助成果 | 科普快讯 |
|
||||
| -------- | -------- | -------- | -------- |
|
||||
|
|
@ -447,7 +447,7 @@ type 为 all 时,category 参数不支持 cost 和 free
|
|||
|
||||
### 支持的快递公司列表
|
||||
|
||||
<Route author="NeverBehave" example="/kuaidi100/company" path="/kuaidi100/company" radar="1"/>
|
||||
<Route author="NeverBehave" example="/kuaidi100/company" path="/kuaidi100/company" radar="1" rssbud="1"/>
|
||||
|
||||
## 裏垢女子まとめ
|
||||
|
||||
|
|
@ -583,7 +583,7 @@ type 为 all 时,category 参数不支持 cost 和 free
|
|||
|
||||
### 郵便追跡サービス
|
||||
|
||||
<Route author="tuzi3040" example="/japanpost/EJ123456789JP/ja" path="/japanpost/:reqCode/:locale?" :paramsDesc="['运单号', '语言,默认为`ja`']" radar="1">
|
||||
<Route author="tuzi3040" example="/japanpost/EJ123456789JP/ja" path="/japanpost/:reqCode/:locale?" :paramsDesc="['运单号', '语言,默认为`ja`']" radar="1" rssbud="1">
|
||||
|
||||
| 日语 | 英语 |
|
||||
| ---- | ---- |
|
||||
|
|
@ -774,7 +774,7 @@ type 为 all 时,category 参数不支持 cost 和 free
|
|||
|
||||
### 远程 work 招聘信息
|
||||
|
||||
<Route author="luyuhuang" example="/remote-work/all" path="/remote-work/:caty?" :paramsDesc="['职位类型, 默认为全部职位']" radar="1">
|
||||
<Route author="luyuhuang" example="/remote-work/all" path="/remote-work/:caty?" :paramsDesc="['职位类型, 默认为全部职位']" radar="1" rssbud="1">
|
||||
|
||||
| 所有职位 | 技术 | 设计 | 运营 | 产品 | 其他 | 市场 | 销售 |
|
||||
| :------: | :---------: | :----: | :-------: | :-----: | :---: | :-------: | :---: |
|
||||
|
|
@ -845,7 +845,7 @@ type 为 all 时,category 参数不支持 cost 和 free
|
|||
|
||||
### 新闻
|
||||
|
||||
<Route author="luyuhuang" example="/ems/news" path="/ems/news" radar="1"/>
|
||||
<Route author="luyuhuang" example="/ems/news" path="/ems/news" radar="1" rssbud="1"/>
|
||||
|
||||
## 自如
|
||||
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ pageClass: routes
|
|||
|
||||
### 每日壁纸
|
||||
|
||||
<Route author="FHYunCai" example="/bing" path="/bing" radar="1"/>
|
||||
<Route author="FHYunCai" example="/bing" path="/bing" radar="1" rssbud="1"/>
|
||||
|
||||
## CNU 视觉联盟
|
||||
|
||||
|
|
@ -80,7 +80,7 @@ pageClass: routes
|
|||
|
||||
### 公开影集
|
||||
|
||||
<Route author="hoilc" example="/google/album/msFFnAzKmQmWj76EA" path="/google/album/:id" :paramsDesc="['影集 ID, 可在 URL 中找到, 例如, 分享链接为`https://photos.app.goo.gl/msFFnAzKmQmWj76EA`, 则 ID 为`msFFnAzKmQmWj76EA`']" radar="1" />
|
||||
<Route author="hoilc" example="/google/album/msFFnAzKmQmWj76EA" path="/google/album/:id" :paramsDesc="['影集 ID, 可在 URL 中找到, 例如, 分享链接为`https://photos.app.goo.gl/msFFnAzKmQmWj76EA`, 则 ID 为`msFFnAzKmQmWj76EA`']" radar="1"/>
|
||||
|
||||
## Hentai Cosplay
|
||||
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ pageClass: routes
|
|||
|
||||
### 镜像有新 Build
|
||||
|
||||
<Route author="HenryQW" example="/dockerhub/build/wangqiru/ttrss" path="/dockerhub/build/:owner/:image/:tag?" :paramsDesc="['镜像作者', '镜像名称', '镜像标签,默认 latest']" radar="1"/>
|
||||
<Route author="HenryQW" example="/dockerhub/build/wangqiru/ttrss" path="/dockerhub/build/:owner/:image/:tag?" :paramsDesc="['镜像作者', '镜像名称', '镜像标签,默认 latest']" radar="1" rssbud="1"/>
|
||||
|
||||
::: warning 注意
|
||||
|
||||
|
|
@ -212,11 +212,11 @@ pageClass: routes
|
|||
|
||||
### 有新路由啦
|
||||
|
||||
<Route author="DIYgod" example="/rsshub/routes" path="/rsshub/routes" radar="1"/>
|
||||
<Route author="DIYgod" example="/rsshub/routes" path="/rsshub/routes" radar="1" rssbud="1"/>
|
||||
|
||||
### 有新赞助商啦
|
||||
|
||||
<Route author="DIYgod" example="/rsshub/sponsors" path="/rsshub/sponsors" radar="1"/>
|
||||
<Route author="DIYgod" example="/rsshub/sponsors" path="/rsshub/sponsors" radar="1" rssbud="1"/>
|
||||
|
||||
## sketch.com
|
||||
|
||||
|
|
@ -284,7 +284,7 @@ pageClass: routes
|
|||
|
||||
### app 更新
|
||||
|
||||
<Route author="zytomorrow" example="/pgyer/:app" path="/pgyer/kz-test" :paramsDesc="['app为下载页最后的路径']" radar="1"/>
|
||||
<Route author="zytomorrow" example="/pgyer/:app" path="/pgyer/kz-test" :paramsDesc="['app为下载页最后的路径']" radar="1" rssbud="1"/>
|
||||
|
||||
## 腾讯柠檬 Lab
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ pageClass: routes
|
|||
|
||||
### 视频更新
|
||||
|
||||
<Route author="ImSingee" example="/algocasts" path="/algocasts" radar="1"></Route>
|
||||
<Route author="ImSingee" example="/algocasts" path="/algocasts" radar="1" rssbud="1"></Route>
|
||||
|
||||
> AlgoCasts 需要付费订阅,RSS 仅做更新提醒,不含付费内容.
|
||||
|
||||
|
|
@ -81,35 +81,35 @@ GitHub 官方也提供了一些 RSS:
|
|||
|
||||
### 用户仓库
|
||||
|
||||
<Route author="DIYgod" example="/github/repos/DIYgod" path="/github/repos/:user" :paramsDesc="['用户名']" radar="1"/>
|
||||
<Route author="DIYgod" example="/github/repos/DIYgod" path="/github/repos/:user" :paramsDesc="['用户名']" radar="1" rssbud="1"/>
|
||||
|
||||
### Trending
|
||||
|
||||
<Route author="DIYgod" example="/github/trending/daily/javascript" path="/github/trending/:since/:language?" :paramsDesc="['时间跨度, 可在 [Trending 页](https://github.com/trending/javascript?since=monthly) URL 中找到, 可选 daily weekly monthly', '语言, 可在 [Trending 页](https://github.com/trending/javascript?since=monthly) URL 中找到']" radar="1"/>
|
||||
<Route author="DIYgod" example="/github/trending/daily/javascript" path="/github/trending/:since/:language?" :paramsDesc="['时间跨度, 可在 [Trending 页](https://github.com/trending/javascript?since=monthly) URL 中找到, 可选 daily weekly monthly', '语言, 可在 [Trending 页](https://github.com/trending/javascript?since=monthly) URL 中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
### 仓库 Issues
|
||||
|
||||
<Route author="HenryQW AndreyMZ" example="/github/issue/DIYgod/RSSHub/open/RSS%20wanted" path="/github/issue/:user/:repo/:state?/:labels?" :paramsDesc="['用户名', '仓库名', 'issue 状态,可选`open`,`closed`或`all`,默认为`open`', '标签列表,以逗号分隔']" radar="1"/>
|
||||
<Route author="HenryQW AndreyMZ" example="/github/issue/DIYgod/RSSHub/open/RSS%20wanted" path="/github/issue/:user/:repo/:state?/:labels?" :paramsDesc="['用户名', '仓库名', 'issue 状态,可选`open`,`closed`或`all`,默认为`open`', '标签列表,以逗号分隔']" radar="1" rssbud="1"/>
|
||||
|
||||
### 仓库 Pull Requests
|
||||
|
||||
<Route author="hashman" example="/github/pull/DIYgod/RSSHub" path="/github/pull/:user/:repo" :paramsDesc="['用户名', '仓库名']" radar="1"/>
|
||||
<Route author="hashman" example="/github/pull/DIYgod/RSSHub" path="/github/pull/:user/:repo" :paramsDesc="['用户名', '仓库名']" radar="1" rssbud="1"/>
|
||||
|
||||
### 用户 Followers
|
||||
|
||||
<Route author="HenryQW" example="/github/user/followers/HenryQW" path="/github/user/followers/:user" :paramsDesc="['用户名']" radar="1"/>
|
||||
<Route author="HenryQW" example="/github/user/followers/HenryQW" path="/github/user/followers/:user" :paramsDesc="['用户名']" radar="1" rssbud="1"/>
|
||||
|
||||
### 仓库 Stars
|
||||
|
||||
<Route author="HenryQW" example="/github/stars/DIYgod/RSSHub" path="/github/stars/:user/:repo" :paramsDesc="['用户名', '仓库名']" radar="1"/>
|
||||
<Route author="HenryQW" example="/github/stars/DIYgod/RSSHub" path="/github/stars/:user/:repo" :paramsDesc="['用户名', '仓库名']" radar="1" rssbud="1"/>
|
||||
|
||||
### 仓库 Branches
|
||||
|
||||
<Route author="max-arnold" example="/github/branches/DIYgod/RSSHub" path="/github/branches/:user/:repo" :paramsDesc="['用户名', '仓库名']" radar="1"/>
|
||||
<Route author="max-arnold" example="/github/branches/DIYgod/RSSHub" path="/github/branches/:user/:repo" :paramsDesc="['用户名', '仓库名']" radar="1" rssbud="1"/>
|
||||
|
||||
### 文件 Commits
|
||||
|
||||
<Route author="zengxs" example="/github/file/DIYgod/RSSHub/master/lib/router.js" path="/github/file/:user/:repo/:branch/:filepath+" :paramsDesc="['用户名', '仓库名', '分支名', '文件路径']" radar="1">
|
||||
<Route author="zengxs" example="/github/file/DIYgod/RSSHub/master/lib/router.js" path="/github/file/:user/:repo/:branch/:filepath+" :paramsDesc="['用户名', '仓库名', '分支名', '文件路径']" radar="1" rssbud="1">
|
||||
|
||||
| 用户名 | 仓库名 | 分支名 | 文件路径 |
|
||||
| -------- | -------- | -------- | --------------- |
|
||||
|
|
@ -137,11 +137,11 @@ GitHub 官方也提供了一些 RSS:
|
|||
|
||||
### 用户 Star 的仓库
|
||||
|
||||
<Route author="LanceZhu" example="/github/starred_repos/DIYgod" path="/github/starred_repos/:user" :paramsDesc="['用户名']" radar="1"/>
|
||||
<Route author="LanceZhu" example="/github/starred_repos/DIYgod" path="/github/starred_repos/:user" :paramsDesc="['用户名']" radar="1" rssbud="1"/>
|
||||
|
||||
### 仓库 Contirbutors
|
||||
|
||||
<Route author="zoenglinghou" example="/github/contributors/DIYgod/RSSHub" path="/github/contributors/:user/:repo/:order?/:anon?" :paramsDesc="['用户名', '仓库名', 'Commit 数量排序顺序,desc和asc(默认desc降序)', '是否包括匿名用户,默认不包含,任意值包含匿名用户']" radar="1"/>
|
||||
<Route author="zoenglinghou" example="/github/contributors/DIYgod/RSSHub" path="/github/contributors/:user/:repo/:order?/:anon?" :paramsDesc="['用户名', '仓库名', 'Commit 数量排序顺序,desc和asc(默认desc降序)', '是否包括匿名用户,默认不包含,任意值包含匿名用户']" radar="1" rssbud="1"/>
|
||||
|
||||
## GitLab
|
||||
|
||||
|
|
@ -198,7 +198,7 @@ GitHub 官方也提供了一些 RSS:
|
|||
|
||||
### 最新
|
||||
|
||||
<Route author="Yangshuqing" example="/itslide/new" path="/itslide/new" radar="1"/>
|
||||
<Route author="Yangshuqing" example="/itslide/new" path="/itslide/new" radar="1" rssbud="1"/>
|
||||
|
||||
## Kaggle
|
||||
|
||||
|
|
@ -476,7 +476,7 @@ GitHub 官方也提供了一些 RSS:
|
|||
|
||||
### 专栏
|
||||
|
||||
<Route author="Maecenas" example="/juejin/posts/56852b2460b2a099cdc1d133" path="/juejin/posts/:id" :paramsDesc="['用户 id, 可在用户页 URL 中找到']" radar="1"/>
|
||||
<Route author="Maecenas" example="/juejin/posts/56852b2460b2a099cdc1d133" path="/juejin/posts/:id" :paramsDesc="['用户 id, 可在用户页 URL 中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
### 收藏集
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ pageClass: routes
|
|||
|
||||
### biquge5200.com
|
||||
|
||||
<Route author="jjeejj" example="/novel/biquge/52_52542" path="/novel/biquge/:id" :paramsDesc="['小说 id, 可在对应小说页 URL 中找到']" anticrawler="1" radar="1"></Route>
|
||||
<Route author="jjeejj" example="/novel/biquge/52_52542" path="/novel/biquge/:id" :paramsDesc="['小说 id, 可在对应小说页 URL 中找到']" anticrawler="1" radar="1" rssbud="1"></Route>
|
||||
|
||||
::: tip 提示
|
||||
|
||||
|
|
@ -68,7 +68,7 @@ pageClass: routes
|
|||
|
||||
### biquge.info
|
||||
|
||||
<Route author="machsix" example="/novel/biqugeinfo/81_81797" path="/novel/biqugeinfo/:id" :paramsDesc="['小说 id, 可在对应小说页 URL 中找到']" anticrawler="1" radar="1"></Route>
|
||||
<Route author="machsix" example="/novel/biqugeinfo/81_81797" path="/novel/biqugeinfo/:id" :paramsDesc="['小说 id, 可在对应小说页 URL 中找到']" anticrawler="1" radar="1" rssbud="1"></Route>
|
||||
|
||||
::: tip 提示
|
||||
|
||||
|
|
@ -268,7 +268,7 @@ count 的取值范围为 1-12,为防止请求次数过多,推荐设置为 5
|
|||
|
||||
### 最新章节
|
||||
|
||||
<Route author="suiyuran" example="/novel/zhaishuyuan/17858" path="/novel/zhaishuyuan/:id" :paramsDesc="['小说 id, 可在对应小说页 URL 中找到, 例如 `17858`']" radar="1">
|
||||
<Route author="suiyuran" example="/novel/zhaishuyuan/17858" path="/novel/zhaishuyuan/:id" :paramsDesc="['小说 id, 可在对应小说页 URL 中找到, 例如 `17858`']" radar="1" rssbud="1">
|
||||
|
||||
举例网址:<https://www.zhaishuyuan.com/book/17858>
|
||||
|
||||
|
|
|
|||
|
|
@ -179,11 +179,11 @@ For instance, in <https://www.leboncoin.fr/recherche/?**category=10&locations=Pa
|
|||
|
||||
### 关键词
|
||||
|
||||
<Route author="DIYgod" example="/smzdm/keyword/女装" path="/smzdm/keyword/:keyword" :paramsDesc="['你想订阅的关键词']" radar="1"/>
|
||||
<Route author="DIYgod" example="/smzdm/keyword/女装" path="/smzdm/keyword/:keyword" :paramsDesc="['你想订阅的关键词']" radar="1" rssbud="1"/>
|
||||
|
||||
### 排行榜
|
||||
|
||||
<Route author="DIYgod" example="/smzdm/ranking/pinlei/11/3" path="/smzdm/ranking/:rank_type/:rank_id/:hour" :paramsDesc="['榜单类型','榜单ID','时间跨度']" radar="1">
|
||||
<Route author="DIYgod" example="/smzdm/ranking/pinlei/11/3" path="/smzdm/ranking/:rank_type/:rank_id/:hour" :paramsDesc="['榜单类型','榜单ID','时间跨度']" radar="1" rssbud="1">
|
||||
|
||||
- 榜单类型
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性
|
|||
|
||||
### UP 主投稿
|
||||
|
||||
<Route author="DIYgod" example="/bilibili/user/video/2267573" path="/bilibili/user/video/:uid/:disableEmbed?" :paramsDesc="['用户 id, 可在 UP 主主页中找到', '默认为开启内嵌视频, 任意值为关闭']" radar="1"/>
|
||||
<Route author="DIYgod" example="/bilibili/user/video/2267573" path="/bilibili/user/video/:uid/:disableEmbed?" :paramsDesc="['用户 id, 可在 UP 主主页中找到', '默认为开启内嵌视频, 任意值为关闭']" radar="1" rssbud="1"/>
|
||||
|
||||
### UP 主专栏
|
||||
|
||||
|
|
@ -36,7 +36,7 @@ Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性
|
|||
|
||||
### UP 主动态
|
||||
|
||||
<Route author="DIYgod zytomorrow" example="/bilibili/user/dynamic/2267573" path="/bilibili/user/dynamic/:uid/:disableEmbed?" :paramsDesc="['用户 id, 可在 UP 主主页中找到', '默认为开启内嵌视频, 任意值为关闭']" radar="1"/>
|
||||
<Route author="DIYgod zytomorrow" example="/bilibili/user/dynamic/2267573" path="/bilibili/user/dynamic/:uid/:disableEmbed?" :paramsDesc="['用户 id, 可在 UP 主主页中找到', '默认为开启内嵌视频, 任意值为关闭']" radar="1" rssbud="1"/>
|
||||
|
||||
### UP 主频道
|
||||
|
||||
|
|
@ -64,7 +64,7 @@ Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性
|
|||
|
||||
### 分区视频
|
||||
|
||||
<Route author="DIYgod" example="/bilibili/partion/33" path="/bilibili/partion/:tid/:disableEmbed?" :paramsDesc="['分区 id', '默认为开启内嵌视频, 任意值为关闭']" radar="1">
|
||||
<Route author="DIYgod" example="/bilibili/partion/33" path="/bilibili/partion/:tid/:disableEmbed?" :paramsDesc="['分区 id', '默认为开启内嵌视频, 任意值为关闭']" radar="1" rssbud="1">
|
||||
|
||||
动画
|
||||
|
||||
|
|
@ -369,21 +369,21 @@ Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性
|
|||
|
||||
### 用户
|
||||
|
||||
<Route author="hoilc" example="/picuki/profile/stefaniejoosten" path="/picuki/profile/:id/:displayVideo?" :paramsDesc="['Instagram 用户 id','是否显示视频,任意值为是,留空为否']" radar="1" />
|
||||
<Route author="hoilc" example="/picuki/profile/stefaniejoosten" path="/picuki/profile/:id/:displayVideo?" :paramsDesc="['Instagram 用户 id','是否显示视频,任意值为是,留空为否']" radar="1" rssbud="1"/>
|
||||
|
||||
## pixiv
|
||||
|
||||
### 用户收藏
|
||||
|
||||
<Route author="EYHN" example="/pixiv/user/bookmarks/15288095" path="/pixiv/user/bookmarks/:id" :paramsDesc="['用户 id, 可在用户主页 URL 中找到']" radar="1"/>
|
||||
<Route author="EYHN" example="/pixiv/user/bookmarks/15288095" path="/pixiv/user/bookmarks/:id" :paramsDesc="['用户 id, 可在用户主页 URL 中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
### 用户动态
|
||||
|
||||
<Route author="DIYgod" example="/pixiv/user/11" path="/pixiv/user/:id" :paramsDesc="['用户 id, 可在用户主页 URL 中找到']" radar="1"/>
|
||||
<Route author="DIYgod" example="/pixiv/user/11" path="/pixiv/user/:id" :paramsDesc="['用户 id, 可在用户主页 URL 中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
### 排行榜
|
||||
|
||||
<Route author="EYHN" example="/pixiv/ranking/week" path="/pixiv/ranking/:mode/:date?" :paramsDesc="['排行榜类型' ,'日期, 取值形如 `2018-4-25`']" radar="1">
|
||||
<Route author="EYHN" example="/pixiv/ranking/week" path="/pixiv/ranking/:mode/:date?" :paramsDesc="['排行榜类型' ,'日期, 取值形如 `2018-4-25`']" radar="1" rssbud="1">
|
||||
|
||||
| pixiv 日排行 | pixiv 周排行 | pixiv 月排行 | pixiv 受男性欢迎排行 | pixiv 受女性欢迎排行 | pixiv 原创作品排行 | pixiv 新人排行 |
|
||||
| ------------ | ------------ | ------------ | -------------------- | -------------------- | ------------------ | -------------- |
|
||||
|
|
@ -397,11 +397,11 @@ Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性
|
|||
|
||||
### 关键词
|
||||
|
||||
<Route author="DIYgod" example="/pixiv/search/麻衣/popular/2" path="/pixiv/search/:keyword/:order?/:r18?" :paramsDesc="['关键词', '排序方式,popular 按热门度排序,空或其他任意值按时间排序', '过滤 R18 内容,0 为不过滤,1 为只看非 R18 内容,2 为只看 R18 内容,默认为 0']" radar="1"/>
|
||||
<Route author="DIYgod" example="/pixiv/search/麻衣/popular/2" path="/pixiv/search/:keyword/:order?/:r18?" :paramsDesc="['关键词', '排序方式,popular 按热门度排序,空或其他任意值按时间排序', '过滤 R18 内容,0 为不过滤,1 为只看非 R18 内容,2 为只看 R18 内容,默认为 0']" radar="1" rssbud="1"/>
|
||||
|
||||
### 关注的新作品
|
||||
|
||||
<Route author="ClarkeCheng" example="/pixiv/user/illustfollows" path="/pixiv/user/illustfollows" radar="1"/>
|
||||
<Route author="ClarkeCheng" example="/pixiv/user/illustfollows" path="/pixiv/user/illustfollows" radar="1" rssbud="1"/>
|
||||
::: warning 注意
|
||||
|
||||
因为每个人关注的画师不同,所以只能自建。请不要将画师设为 “悄悄关注”,这样子画师的作品就不会出现在订阅里了。
|
||||
|
|
@ -417,23 +417,23 @@ Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性
|
|||
|
||||
### 提问箱新回答
|
||||
|
||||
<Route author="AgFlore" example="/popiask/popi6666" path="/popiask/:sharecode/:pagesize?" :paramsDesc="['提问箱 ID', '查看条数(默认为 20)']" radar="1"/>
|
||||
<Route author="AgFlore" example="/popiask/popi6666" path="/popiask/:sharecode/:pagesize?" :paramsDesc="['提问箱 ID', '查看条数(默认为 20)']" radar="1" rssbud="1"/>
|
||||
|
||||
## Soul
|
||||
|
||||
### 瞬间更新
|
||||
|
||||
<Route author="ImSingee" example="/soul/Y2w2aTNWQVBLOU09" path="/soul/:id" :paramsDesc="['用户 id, 分享用户主页时的 URL 的 userIdEcpt 参数']" radar="1"></Route>
|
||||
<Route author="ImSingee" example="/soul/Y2w2aTNWQVBLOU09" path="/soul/:id" :paramsDesc="['用户 id, 分享用户主页时的 URL 的 userIdEcpt 参数']" radar="1" rssbud="1"></Route>
|
||||
|
||||
### 热门瞬间
|
||||
|
||||
<Route author="BugWriter2" example="/soul/posts/hot" path="/soul/posts/hot" radar="1"></Route>
|
||||
<Route author="BugWriter2" example="/soul/posts/hot" path="/soul/posts/hot" radar="1" rssbud="1"></Route>
|
||||
|
||||
## Telegram
|
||||
|
||||
### 频道
|
||||
|
||||
<Route author="DIYgod" example="/telegram/channel/awesomeDIYgod/%23DIYgod的豆瓣动态" path="/telegram/channel/:username/:searchQuery?" :paramsDesc="['频道 username', '搜索关键词, 如需搜索 tag 请用 `%23` 替代 `#`']" radar="1">
|
||||
<Route author="DIYgod" example="/telegram/channel/awesomeDIYgod/%23DIYgod的豆瓣动态" path="/telegram/channel/:username/:searchQuery?" :paramsDesc="['频道 username', '搜索关键词, 如需搜索 tag 请用 `%23` 替代 `#`']" radar="1" rssbud="1">
|
||||
|
||||
::: tip 提示
|
||||
|
||||
|
|
@ -461,11 +461,11 @@ Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性
|
|||
|
||||
### 用户时间线
|
||||
|
||||
<Route author="DIYgod" example="/twitter/user/DIYgod" path="/twitter/user/:id/:type?" :paramsDesc="['用户名', '额外选项 `exclude_replies`去除回复,`exclude_rts`去除转推,`exclude_rts_replies`去除回复和转推,默认包含全部回复和转推。']" radar="1"/>
|
||||
<Route author="DIYgod" example="/twitter/user/DIYgod" path="/twitter/user/:id/:type?" :paramsDesc="['用户名', '额外选项 `exclude_replies`去除回复,`exclude_rts`去除转推,`exclude_rts_replies`去除回复和转推,默认包含全部回复和转推。']" radar="1" rssbud="1"/>
|
||||
|
||||
### 用户关注时间线
|
||||
|
||||
<Route author="DIYgod" example="/twitter/followings/DIYgod" path="/twitter/followings/:id" :paramsDesc="['用户名']" radar="1">
|
||||
<Route author="DIYgod" example="/twitter/followings/DIYgod" path="/twitter/followings/:id" :paramsDesc="['用户名']" radar="1" rssbud="1">
|
||||
|
||||
::: warning 注意
|
||||
|
||||
|
|
@ -477,19 +477,19 @@ Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性
|
|||
|
||||
### 列表时间线
|
||||
|
||||
<Route author="xyqfer" example="/twitter/list/ladyleet/Javascript" path="/twitter/list/:id/:name" :paramsDesc="['用户名', 'list 名称']" radar="1"/>
|
||||
<Route author="xyqfer" example="/twitter/list/ladyleet/javascript" path="/twitter/list/:id/:name" :paramsDesc="['用户名', 'list 名称']" radar="1" rssbud="1"/>
|
||||
|
||||
### 用户喜欢列表
|
||||
|
||||
<Route author="xyqfer" example="/twitter/likes/DIYgod" path="/twitter/likes/:id" :paramsDesc="['用户名']" radar="1"/>
|
||||
<Route author="xyqfer" example="/twitter/likes/DIYgod" path="/twitter/likes/:id" :paramsDesc="['用户名']" radar="1" rssbud="1"/>
|
||||
|
||||
### 关键词
|
||||
|
||||
<Route author="DIYgod" example="/twitter/keyword/RSSHub" path="/twitter/keyword/:keyword" :paramsDesc="['关键词']" radar="1"/>
|
||||
<Route author="DIYgod" example="/twitter/keyword/RSSHub" path="/twitter/keyword/:keyword" :paramsDesc="['关键词']" radar="1" rssbud="1"/>
|
||||
|
||||
### Trends
|
||||
|
||||
<Route author="sakamossan" example="/twitter/trends/23424856" path="/twitter/trends/:woeid?" :paramsDesc="['Where On Earth ID. 默认 woeid=1 (World Wide)']" radar="1"/>
|
||||
<Route author="sakamossan" example="/twitter/trends/23424856" path="/twitter/trends/:woeid?" :paramsDesc="['Where On Earth ID. 默认 woeid=1 (World Wide)']" radar="1" rssbud="1"/>
|
||||
|
||||
## VueVlog
|
||||
|
||||
|
|
@ -507,15 +507,15 @@ Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性
|
|||
|
||||
### 用户
|
||||
|
||||
<Route author="DIYgod" example="/youtube/user/JFlaMusic/" path="/youtube/user/:username/:disableEmbed?" :paramsDesc="['用户名', '默认为开启内嵌视频, 任意值为关闭']" radar="1"/>
|
||||
<Route author="DIYgod" example="/youtube/user/JFlaMusic/" path="/youtube/user/:username/:disableEmbed?" :paramsDesc="['用户名', '默认为开启内嵌视频, 任意值为关闭']" radar="1" rssbud="1"/>
|
||||
|
||||
### 频道
|
||||
|
||||
<Route author="DIYgod" example="/youtube/channel/UCDwDMPOZfxVV0x_dz0eQ8KQ" path="/youtube/channel/:id/:disableEmbed?" :paramsDesc="['频道 id', '默认为开启内嵌视频, 任意值为关闭']" radar="1"/>
|
||||
<Route author="DIYgod" example="/youtube/channel/UCDwDMPOZfxVV0x_dz0eQ8KQ" path="/youtube/channel/:id/:disableEmbed?" :paramsDesc="['频道 id', '默认为开启内嵌视频, 任意值为关闭']" radar="1" rssbud="1"/>
|
||||
|
||||
### 播放列表
|
||||
|
||||
<Route author="HenryQW" example="/youtube/playlist/PLqQ1RwlxOgeLTJ1f3fNMSwhjVgaWKo_9Z" path="/youtube/playlist/:id/:disableEmbed?" :paramsDesc="['播放列表 id', '默认为开启内嵌视频, 任意值为关闭']" radar="1"/>
|
||||
<Route author="HenryQW" example="/youtube/playlist/PLqQ1RwlxOgeLTJ1f3fNMSwhjVgaWKo_9Z" path="/youtube/playlist/:id/:disableEmbed?" :paramsDesc="['播放列表 id', '默认为开启内嵌视频, 任意值为关闭']" radar="1" rssbud="1"/>
|
||||
|
||||
## 巴哈姆特
|
||||
|
||||
|
|
@ -735,11 +735,11 @@ Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性
|
|||
|
||||
### 圈子
|
||||
|
||||
<Route author="DIYgod prnake" example="/jike/topic/556688fae4b00c57d9dd46ee" path="/jike/topic/:id" :paramsDesc="['圈子 id, 可在即刻 web 端圈子页或 APP 分享出来的圈子页 URL 中找到']" radar="1"/>
|
||||
<Route author="DIYgod prnake" example="/jike/topic/556688fae4b00c57d9dd46ee" path="/jike/topic/:id" :paramsDesc="['圈子 id, 可在即刻 web 端圈子页或 APP 分享出来的圈子页 URL 中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
### 圈子 - 纯文字
|
||||
|
||||
<Route author="HenryQW" example="/jike/topic/text/553870e8e4b0cafb0a1bef68" path="/jike/topic/text/:id" :paramsDesc="['圈子 id, 可在即刻 web 端圈子页或 APP 分享出来的圈子页 URL 中找到']" radar="1"/>
|
||||
<Route author="HenryQW" example="/jike/topic/text/553870e8e4b0cafb0a1bef68" path="/jike/topic/text/:id" :paramsDesc="['圈子 id, 可在即刻 web 端圈子页或 APP 分享出来的圈子页 URL 中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
## 简书
|
||||
|
||||
|
|
@ -839,15 +839,15 @@ rule
|
|||
|
||||
### 关键词
|
||||
|
||||
<Route author="DIYgod" example="/weibo/keyword/DIYgod" path="/weibo/keyword/:keyword" :paramsDesc="['你想订阅的微博关键词']" anticrawler="1" radar="1"/>
|
||||
<Route author="DIYgod" example="/weibo/keyword/DIYgod" path="/weibo/keyword/:keyword" :paramsDesc="['你想订阅的微博关键词']" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 热搜榜
|
||||
|
||||
<Route author="xyqfer" example="/weibo/search/hot" path="/weibo/search/hot" anticrawler="1" radar="1"/>
|
||||
<Route author="xyqfer" example="/weibo/search/hot" path="/weibo/search/hot" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 超话
|
||||
|
||||
<Route author="zengxs" example="/weibo/super_index/1008084989d223732bf6f02f75ea30efad58a9" path="/weibo/super_index/:id" :paramsDesc="['超话ID']" anticrawler="1" radar="1"/>
|
||||
<Route author="zengxs" example="/weibo/super_index/1008084989d223732bf6f02f75ea30efad58a9" path="/weibo/super_index/:id" :paramsDesc="['超话ID']" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 个人时间线
|
||||
|
||||
|
|
@ -926,27 +926,27 @@ rule
|
|||
|
||||
### 收藏夹
|
||||
|
||||
<Route author="huruji" example="/zhihu/collection/26444956" path="/zhihu/collection/:id" :paramsDesc="['收藏夹 id, 可在收藏夹页面 URL 中找到']" anticrawler="1" radar="1"/>
|
||||
<Route author="huruji" example="/zhihu/collection/26444956" path="/zhihu/collection/:id" :paramsDesc="['收藏夹 id, 可在收藏夹页面 URL 中找到']" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 用户动态
|
||||
|
||||
<Route author="DIYgod" example="/zhihu/people/activities/diygod" path="/zhihu/people/activities/:id" :paramsDesc="['作者 id, 可在用户主页 URL 中找到']" anticrawler="1" radar="1"/>
|
||||
<Route author="DIYgod" example="/zhihu/people/activities/diygod" path="/zhihu/people/activities/:id" :paramsDesc="['作者 id, 可在用户主页 URL 中找到']" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 用户回答
|
||||
|
||||
<Route author="DIYgod prnake" example="/zhihu/people/answers/diygod" path="/zhihu/people/answers/:id" :paramsDesc="['作者 id, 可在用户主页 URL 中找到']" anticrawler="1" radar="1"/>
|
||||
<Route author="DIYgod prnake" example="/zhihu/people/answers/diygod" path="/zhihu/people/answers/:id" :paramsDesc="['作者 id, 可在用户主页 URL 中找到']" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 用户文章
|
||||
|
||||
<Route author="whtsky" example="/zhihu/people/posts/dcjanus" path="/zhihu/people/posts/:id" :paramsDesc="['作者 id, 可在用户主页 URL 中找到']" anticrawler="1" radar="1"/>
|
||||
<Route author="whtsky" example="/zhihu/people/posts/dcjanus" path="/zhihu/people/posts/:id" :paramsDesc="['作者 id, 可在用户主页 URL 中找到']" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 专栏
|
||||
|
||||
<Route author="DIYgod" example="/zhihu/zhuanlan/googledevelopers" path="/zhihu/zhuanlan/:id" :paramsDesc="['专栏 id, 可在专栏主页 URL 中找到']" anticrawler="1" radar="1"/>
|
||||
<Route author="DIYgod" example="/zhihu/zhuanlan/googledevelopers" path="/zhihu/zhuanlan/:id" :paramsDesc="['专栏 id, 可在专栏主页 URL 中找到']" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 知乎日报
|
||||
|
||||
<Route author="DHPO" example="/zhihu/daily" path="/zhihu/daily" anticrawler="1" radar="1"/>
|
||||
<Route author="DHPO" example="/zhihu/daily" path="/zhihu/daily" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 知乎日报 - 合集
|
||||
|
||||
|
|
@ -954,32 +954,32 @@ rule
|
|||
|
||||
### 知乎热榜
|
||||
|
||||
<Route author="DIYgod" example="/zhihu/hotlist" path="/zhihu/hotlist" anticrawler="1" radar="1"/>
|
||||
<Route author="DIYgod" example="/zhihu/hotlist" path="/zhihu/hotlist" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 知乎想法热榜
|
||||
|
||||
<Route author="xyqfer" example="/zhihu/pin/hotlist" path="/zhihu/pin/hotlist" anticrawler="1" radar="1"/>
|
||||
<Route author="xyqfer" example="/zhihu/pin/hotlist" path="/zhihu/pin/hotlist" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 问题
|
||||
|
||||
<Route author="xyqfer" example="/zhihu/question/59895982" path="/zhihu/question/:questionId" :paramsDesc="['问题 id']" anticrawler="1" radar="1"/>
|
||||
<Route author="xyqfer" example="/zhihu/question/59895982" path="/zhihu/question/:questionId" :paramsDesc="['问题 id']" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 话题
|
||||
|
||||
<Route author="xyqfer" example="/zhihu/topic/19828946" path="/zhihu/topic/:topicId" :paramsDesc="['话题 id']" anticrawler="1" radar="1"/>
|
||||
<Route author="xyqfer" example="/zhihu/topic/19828946" path="/zhihu/topic/:topicId" :paramsDesc="['话题 id']" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 用户想法
|
||||
|
||||
<Route author="xyqfer" example="/zhihu/people/pins/kan-dan-45" path="/zhihu/people/pins/:id" :paramsDesc="['作者 id, 可在用户主页 URL 中找到']" anticrawler="1" radar="1"/>
|
||||
<Route author="xyqfer" example="/zhihu/people/pins/kan-dan-45" path="/zhihu/people/pins/:id" :paramsDesc="['作者 id, 可在用户主页 URL 中找到']" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 知乎书店 - 新书
|
||||
|
||||
<Route author="xyqfer" example="/zhihu/bookstore/newest" path="/zhihu/bookstore/newest" anticrawler="1" radar="1"/>
|
||||
<Route author="xyqfer" example="/zhihu/bookstore/newest" path="/zhihu/bookstore/newest" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 知乎想法 - 24 小时新闻汇总
|
||||
|
||||
<Route author="xyqfer" example="/zhihu/pin/daily" path="/zhihu/pin/daily" anticrawler="1" radar="1"/>
|
||||
<Route author="xyqfer" example="/zhihu/pin/daily" path="/zhihu/pin/daily" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
||||
### 知乎书店 - 知乎周刊
|
||||
|
||||
<Route author="LogicJake" example="/zhihu/weekly" path="/zhihu/weekly" anticrawler="1" radar="1"/>
|
||||
<Route author="LogicJake" example="/zhihu/weekly" path="/zhihu/weekly" anticrawler="1" radar="1" rssbud="1"/>
|
||||
|
|
|
|||
|
|
@ -234,11 +234,11 @@ pageClass: routes
|
|||
|
||||
### 精品课程
|
||||
|
||||
<Route author="hoilc" example="/open163/vip" path="/open163/vip" radar="1" />
|
||||
<Route author="hoilc" example="/open163/vip" path="/open163/vip" radar="1" rssbud="1"/>
|
||||
|
||||
### 最新课程
|
||||
|
||||
<Route author="hoilc" example="/open163/latest" path="/open163/latest" radar="1" />
|
||||
<Route author="hoilc" example="/open163/latest" path="/open163/latest" radar="1" rssbud="1"/>
|
||||
|
||||
## 下厨房
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ pageClass: routes
|
|||
|
||||
### 话题
|
||||
|
||||
<Route author="zoenglinghou" example="/apnews/topics/apf-topnews" path="/apnews/topics/:topic" :paramsDesc="['话题名称,可在 URL 中找到,例如 AP Top News [https://apnews.com/apf-topnews](https://apnews.com/apf-topnews) 的话题为 `apf-topnews`']" radar="1"/>
|
||||
<Route author="zoenglinghou" example="/apnews/topics/apf-topnews" path="/apnews/topics/:topic" :paramsDesc="['话题名称,可在 URL 中找到,例如 AP Top News [https://apnews.com/apf-topnews](https://apnews.com/apf-topnews) 的话题为 `apf-topnews`']" radar="1" rssbud="1"/>
|
||||
|
||||
## BBC
|
||||
|
||||
|
|
@ -581,7 +581,7 @@ category 对应的关键词有
|
|||
|
||||
### ホームページ
|
||||
|
||||
<Route author="zjysdhr" example="/nikkei/index" path="/nikkei/index" radar="1">
|
||||
<Route author="zjysdhr" example="/nikkei/index" path="/nikkei/index" radar="1" rssbud="1">
|
||||
|
||||
日文版首页
|
||||
|
||||
|
|
@ -633,23 +633,23 @@ category 对应的关键词有
|
|||
|
||||
### 热门
|
||||
|
||||
<Route author="hoilc" example="/hk01/hot" path="/hk01/hot" radar="1"/>
|
||||
<Route author="hoilc" example="/hk01/hot" path="/hk01/hot" radar="1" rssbud="1"/>
|
||||
|
||||
### 栏目
|
||||
|
||||
<Route author="hoilc" example="/hk01/zone/11" path="/hk01/zone/:id" :paramsDesc="['栏目id, 可在URL中找到']" radar="1"/>
|
||||
<Route author="hoilc" example="/hk01/zone/11" path="/hk01/zone/:id" :paramsDesc="['栏目id, 可在URL中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
### 子栏目
|
||||
|
||||
<Route author="hoilc" example="/hk01/channel/391" path="/hk01/channel/:id" :paramsDesc="['子栏目id, 可在URL中找到']" radar="1"/>
|
||||
<Route author="hoilc" example="/hk01/channel/391" path="/hk01/channel/:id" :paramsDesc="['子栏目id, 可在URL中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
### 专题
|
||||
|
||||
<Route author="hoilc" example="/hk01/issue/649" path="/hk01/issue/:id" :paramsDesc="['专题id, 可在URL中找到']" radar="1"/>
|
||||
<Route author="hoilc" example="/hk01/issue/649" path="/hk01/issue/:id" :paramsDesc="['专题id, 可在URL中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
### 标签
|
||||
|
||||
<Route author="hoilc" example="/hk01/tag/2787" path="/hk01/tag/:id" :paramsDesc="['标签id, 可在URL中找到']" radar="1"/>
|
||||
<Route author="hoilc" example="/hk01/tag/2787" path="/hk01/tag/:id" :paramsDesc="['标签id, 可在URL中找到']" radar="1" rssbud="1"/>
|
||||
|
||||
## 香港電台
|
||||
|
||||
|
|
@ -731,7 +731,7 @@ category 对应的关键词有
|
|||
|
||||
### 新闻联播文字版
|
||||
|
||||
<Route author="luyuhuang" example="/xinwenlianbo/index" path="/xinwenlianbo/index" radar="1"/>
|
||||
<Route author="luyuhuang" example="/xinwenlianbo/index" path="/xinwenlianbo/index" radar="1" rssbud="1"/>
|
||||
|
||||
### 新闻联播文字版全文
|
||||
|
||||
|
|
@ -823,7 +823,7 @@ category 对应的关键词有
|
|||
|
||||
### 新聞
|
||||
|
||||
<Route author="luyuhuang" example="/chinatimes/realtimenews" path="/chinatimes/:caty" :paramsDesc="['类别']" radar="1">
|
||||
<Route author="luyuhuang" example="/chinatimes/realtimenews" path="/chinatimes/:caty" :paramsDesc="['类别']" radar="1" rssbud="1">
|
||||
|
||||
| realtimenews | politic | opinion | life | star | money | society | hottopic | tube | world | armament | chinese | fashion | sports | technologynews | travel | album |
|
||||
| ------------ | ------- | ------- | ---- | ---- | ----- | ------- | -------- | ------- | ----- | -------- | ------- | ------- | ------ | -------------- | ------ | ----- |
|
||||
|
|
|
|||
|
|
@ -542,7 +542,7 @@ category 列表:
|
|||
|
||||
### 研究生院
|
||||
|
||||
<Route author="XYenon Derekmini" example="/heu/yjsy/announcement" path="/heu/yjsy/:type?" :paramsDesc="['栏目, 默认为 `announcement`']" radar="1">
|
||||
<Route author="XYenon Derekmini" example="/heu/yjsy/announcement" path="/heu/yjsy/:type?" :paramsDesc="['栏目, 默认为 `announcement`']" radar="1" rssbud="1">
|
||||
|
||||
| 通知公告 | 新闻动态 | 国家公派项目 | 国际合作与交流项目 |
|
||||
| ------------ | -------- | ------------ | ------------------ |
|
||||
|
|
@ -552,7 +552,7 @@ category 列表:
|
|||
|
||||
### 就业服务平台
|
||||
|
||||
<Route author="Derekmini" example="/heu/job/tzgg" path="/heu/job/:type?" :paramsDesc="['栏目, 默认为 `tzgg`']" radar="1">
|
||||
<Route author="Derekmini" example="/heu/job/tzgg" path="/heu/job/:type?" :paramsDesc="['栏目, 默认为 `tzgg`']" radar="1" rssbud="1">
|
||||
|
||||
| 通知公告 |
|
||||
| -------- |
|
||||
|
|
@ -562,7 +562,7 @@ category 列表:
|
|||
|
||||
### 工学新闻
|
||||
|
||||
<Route author="Derekmini XYenon" example="/heu/news/yw" path="/heu/news/:type?" :paramsDesc="['栏目, 默认为 `yw`']" radar="1">
|
||||
<Route author="Derekmini XYenon" example="/heu/news/yw" path="/heu/news/:type?" :paramsDesc="['栏目, 默认为 `yw`']" radar="1" rssbud="1">
|
||||
|
||||
| 要闻 | 时讯 |
|
||||
| ---- | ---- |
|
||||
|
|
@ -572,7 +572,7 @@ category 列表:
|
|||
|
||||
### 水声工程学院通知
|
||||
|
||||
<Route author="Derekmini" example="/heu/uae/xwdt" path="/heu/uae/:type?" :paramsDesc="['栏目, 默认为 `xwdt`']" radar="1">
|
||||
<Route author="Derekmini" example="/heu/uae/xwdt" path="/heu/uae/:type?" :paramsDesc="['栏目, 默认为 `xwdt`']" radar="1" rssbud="1">
|
||||
|
||||
| 新闻动态 | 通知公告 |
|
||||
| -------- | -------- |
|
||||
|
|
@ -649,7 +649,7 @@ category 列表:
|
|||
|
||||
### 新闻中心
|
||||
|
||||
<Route author="Lava-Swimmer" example="/hbut/news/tzgg" path="/hbut/news/:type" radar="1" :paramsDesc="['分类']">
|
||||
<Route author="Lava-Swimmer" example="/hbut/news/tzgg" path="/hbut/news/:type" radar="1" rssbud="1" :paramsDesc="['分类']">
|
||||
|
||||
| 通知公告 | 湖工要闻 | 学术活动 | 媒体湖工大 | 综合新闻 | 湖工故事 |
|
||||
| -------- | -------- | -------- | ---------- | -------- | -------- |
|
||||
|
|
@ -659,7 +659,7 @@ category 列表:
|
|||
|
||||
### 计算机学院
|
||||
|
||||
<Route author="Lava-Swimmer" example="/hbut/cs/xwdt" path="/hbut/cs/:type" radar="1" :paramsDesc="['分类']">
|
||||
<Route author="Lava-Swimmer" example="/hbut/cs/xwdt" path="/hbut/cs/:type" radar="1" rssbud="1" :paramsDesc="['分类']">
|
||||
|
||||
| 新闻动态 | 通知公告 | 教学信息 | 科研动态 | 党建活动 |
|
||||
| -------- | -------- | -------- | -------- | -------- |
|
||||
|
|
@ -916,21 +916,21 @@ jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE_TLS
|
|||
|
||||
### 电子与计算机工程系新闻
|
||||
|
||||
<Route author="gammapi" example="/umass/amherst/ecenews" path="/umass/amherst/ecenews" radar="1"/>
|
||||
<Route author="gammapi" example="/umass/amherst/ecenews" path="/umass/amherst/ecenews" radar="1" rssbud="1"/>
|
||||
|
||||
### 信息与计算机科学系新闻
|
||||
|
||||
<Route author="gammapi" example="/umass/amherst/csnews" path="/umass/amherst/csnews" radar="1"/>
|
||||
<Route author="gammapi" example="/umass/amherst/csnews" path="/umass/amherst/csnews" radar="1" rssbud="1"/>
|
||||
|
||||
### 国际项目办公室
|
||||
|
||||
#### 活动
|
||||
|
||||
<Route author="gammapi" example="/umass/amherst/ipostories" path="/umass/amherst/ipostories" radar="1"/>
|
||||
<Route author="gammapi" example="/umass/amherst/ipostories" path="/umass/amherst/ipostories" radar="1" rssbud="1"/>
|
||||
|
||||
#### 新闻
|
||||
|
||||
<Route author="gammapi" example="/umass/amherst/ipoevents" path="/umass/amherst/ipoevents" radar="1"/>
|
||||
<Route author="gammapi" example="/umass/amherst/ipoevents" path="/umass/amherst/ipoevents" radar="1" rssbud="1"/>
|
||||
|
||||
## 南昌航空大学
|
||||
|
||||
|
|
@ -1747,7 +1747,7 @@ type 列表:
|
|||
|
||||
### 浙大软件学院
|
||||
|
||||
<Route author="yonvenne zwithz" example="/zju/cst/0" path="/zju/cst/:type" :paramsDesc="['分类, 见下表']" radar="1">
|
||||
<Route author="yonvenne zwithz" example="/zju/cst/0" path="/zju/cst/:type" :paramsDesc="['分类, 见下表']" radar="1" rssbud="1">
|
||||
|
||||
| 全部通知 | 招生信息 | 教务管理 | 论文管理 | 思政工作 | 评奖评优 | 实习就业 | 国际实习 | 国内合作科研 | 国际合作科研 | 校园服务 |
|
||||
| -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ------------ | ------------ | -------- |
|
||||
|
|
@ -1838,7 +1838,7 @@ type 列表:
|
|||
|
||||
### 智慧门户
|
||||
|
||||
<Route author="Fantasia1999" example="/zzuli/campus/0" path="/zzuli/campus/:type" :paramsDesc="['分类, 见下表']" radar="1">
|
||||
<Route author="Fantasia1999" example="/zzuli/campus/0" path="/zzuli/campus/:type" :paramsDesc="['分类, 见下表']" radar="1" rssbud="1">
|
||||
|
||||
| 参数名称 | 公告信息 | 学工信息 | 教学信息 | 信息快递 | 学术报告 | 科研信息 | 网络公告 | 班车查询 | 周会表 |
|
||||
| -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ------ |
|
||||
|
|
@ -1848,7 +1848,7 @@ type 列表:
|
|||
|
||||
### 研究生处
|
||||
|
||||
<Route author="Fantasia1999" example="/zzuli/yjsc/0" path="/zzuli/yjsc/:type" :paramsDesc="['分类, 见下表']" radar="1">
|
||||
<Route author="Fantasia1999" example="/zzuli/yjsc/0" path="/zzuli/yjsc/:type" :paramsDesc="['分类, 见下表']" radar="1" rssbud="1">
|
||||
|
||||
| 参数名称 | 公告通知 | 招生工作 | 新闻资讯 | 培养工作 | 学位工作 |
|
||||
| -------- | -------- | -------- | -------- | -------- | -------- |
|
||||
|
|
|
|||
Loading…
Reference in New Issue