rsstodolist
Capture any public URL into a RSS feed that you can read from your favorite reader.
How rsstodolist works
Send us a URL and a feed name. We turn it into an RSS item so you can triage articles, docs, and inspiration directly where you already read news.
- Minimal setup — no registration, just pick a feed name.
- Bring your own client — every feed is compatible with RSS/Atom readers.
- Privacy friendly — self-host that Open Source service.
About this public instance
This hosted version is « open » : anyone who knows your feed name can read, add, or remove entries. It also runs on a hobby Fly.io plan, so uptime and quotas are limited.
For more reliability and privacy, please consider self-hosting rsstodolist (see related projects).
Access a feed
Or by direct URL : https://rsstodolist.eu/?name=somename
You can add a limit (or l) parameter to fetch from 1 to 500 items (default is
25 items).
Add or delete an item
Use Firefox addon and Chrome extension
A Firefox addon and Chrome extension are available to add or remove an item in a feed from the browser toolbar.
Add or delete an item by URL
https://rsstodolist.eu
/add?name=somename&url=https://fr.wikipedia.org/
https://rsstodolist.eu
/del?name=somename&url=https://fr.wikipedia.org/
title and description parameters are required.
Title will be set from web page title but you can define one by
using title.
You can also set a description with the description
parameter.
All parameters can be minified: n for name, u for url,
t for title and d for description.
Use a bookmarklet
You can use a bookmarklet.
Create a new bookmark and paste the following code in the URL field:
javascript:var rss=prompt('RSS feed name ?');var r=new XMLHttpRequest();r.open('GET','https://rsstodolist.eu/add?n='+rss+'&url='+encodeURIComponent(window.location),true);r.setRequestHeader('Content-Type','text/plain;charset=UTF-8');r.onreadystatechange=function(){if(r.readyState==4){alert("Request sent : "+(r.status===200)+" ("+r.status+")");}};r.send(null);
Clicking on that bookmark will add the current page to the RSS feed.
Contact
Contact me via paulgreg.me.