From 86f69ca396572ca4d7668a33e84cb4f3b523fc4e Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Thu, 4 Dec 2014 19:33:29 +0100 Subject: First draft for the new extension feature - Only system extensions can be loaded for the moment by adding them in the config.php file. - Remove previous system (it will be added properly in the new system in the next step). --- extensions/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 extensions/README.md (limited to 'extensions/README.md') diff --git a/extensions/README.md b/extensions/README.md new file mode 100644 index 000000000..e7b66d5bc --- /dev/null +++ b/extensions/README.md @@ -0,0 +1,15 @@ +== FreshRSS extensions == + +You may place in this directory some custom extensions for FreshRSS. + +The structure must be: + +./FreshRSS/extensions/ + ./NameOfExtensionAlphanumeric/ + ./style.css + ./script.js + ./module.php + +Each file is optional. + +The name of non-official extensions should start by an 'x'. -- cgit v1.2.3 From cb8d1480c1e39c27a96939f7ed51a60f33a7e62b Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Thu, 8 Jan 2015 21:34:29 +0100 Subject: Update extensions README --- extensions/README.md | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'extensions/README.md') diff --git a/extensions/README.md b/extensions/README.md index e7b66d5bc..4c1a81f5c 100644 --- a/extensions/README.md +++ b/extensions/README.md @@ -1,15 +1,3 @@ -== FreshRSS extensions == +# FreshRSS extensions You may place in this directory some custom extensions for FreshRSS. - -The structure must be: - -./FreshRSS/extensions/ - ./NameOfExtensionAlphanumeric/ - ./style.css - ./script.js - ./module.php - -Each file is optional. - -The name of non-official extensions should start by an 'x'. -- cgit v1.2.3 From 74cc2f4664e9fec6c85b3dfaa94764db483b72d4 Mon Sep 17 00:00:00 2001 From: Kevin Papst Date: Mon, 5 Dec 2016 21:13:34 +0100 Subject: added links to extension repository --- README.md | 6 +++++- extensions/README.md | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'extensions/README.md') diff --git a/README.md b/README.md index ebf1e3c5f..8055711e2 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ # FreshRSS FreshRSS is a self-hosted RSS feed aggregator such as [Leed](http://projet.idleman.fr/leed/) or [Kriss Feed](http://tontof.net/kriss/feed/). -It is at the same time lightweight, easy to work with, powerful and customizable. +It is at the same time lightweight, easy to work with, powerful, customizable and supports [extensions](#extensions). It is a multi-user application with an anonymous reading mode. It supports [PubSubHubbub](https://code.google.com/p/pubsubhubbub/) for instant notifications from compatible Web sites. @@ -22,6 +22,10 @@ See the [list of releases](../../releases). * Use [the master branch](https://github.com/FreshRSS/FreshRSS/tree/master/) if you need a stable version. * For those willing to help testing or developing the latest features, [the dev branch](https://github.com/FreshRSS/FreshRSS/tree/dev) is waiting for you! +# Extensions +FreshRSS supports further customizations by adding extensions on top of its core functionality. +There is a repository dedicated to those extensions [here on GitHub](https://github.com/FreshRSS/Extensions). + # Disclaimer This application was developed to fulfil personal needs primarily, and comes with absolutely no warranty. Feature requests, bug reports, and other contributions are welcome. The best way is to [open an issue on GitHub](https://github.com/FreshRSS/FreshRSS/issues). diff --git a/extensions/README.md b/extensions/README.md index 4c1a81f5c..62766d6f2 100644 --- a/extensions/README.md +++ b/extensions/README.md @@ -1,3 +1,5 @@ # FreshRSS extensions -You may place in this directory some custom extensions for FreshRSS. +You may place custom extensions for FreshRSS in this directory. + +You can find some extensions in our [GitHub repository](https://github.com/FreshRSS/Extensions). -- cgit v1.2.3