diff --git a/README.md b/README.md index a9684ba..78f117a 100644 --- a/README.md +++ b/README.md @@ -164,6 +164,10 @@ There are some FreshRSS extensions out there, developed by community members: * [ArticleSummary](https://github.com/LiangWei88/xExtension-ArticleSummary): Generate article summaries using OpenAI-compatible language model APIs. Supports both OpenAI and Ollama providers with a user-friendly configuration interface. +### By [@wogong](https://github.com/wogong) + +* [Article Translation & Summary](https://github.com/wogong/freshrss-translate-summary): Translate and summarize FreshRSS entry content into Chinese using an OpenAI-compatible API. + ### By [@Niehztog](https://github.com/Niehztog) * [Article Full Text](https://github.com/Niehztog/freshrss-af-readability): Fetches full article contents and adds them to feed items by using [Fivefilters Readability.php library](https://github.com/fivefilters/readability.php) (no docker containers required). diff --git a/extensions.json b/extensions.json index 49b8cea..2c4e2cd 100644 --- a/extensions.json +++ b/extensions.json @@ -23,6 +23,17 @@ "method": "git", "directory": "." }, + { + "name": "Article Translation & Summary", + "author": "wogong", + "description": "Translate and summarize FreshRSS entry content into Chinese using an OpenAI-compatible API.", + "version": "0.1.0", + "entrypoint": "TranslateSummary", + "type": "user", + "url": "https://github.com/wogong/freshrss-translate-summary", + "method": "git", + "directory": "." + }, { "name": "Auto Refresh", "author": "Essa AlAwadi", diff --git a/repositories.json b/repositories.json index c5748dc..1d03b5d 100644 --- a/repositories.json +++ b/repositories.json @@ -91,6 +91,9 @@ }, { "url": "https://github.com/LiangWei88/xExtension-ArticleSummary", "type": "git" +}, { + "url": "https://github.com/wogong/freshrss-translate-summary", + "type": "git" }, { "url": "https://github.com/Niehztog/freshrss-af-readability", "type": "git"