Last updated 2026-08-06
Feed-elity collects nothing, sends nothing, and contacts no server. That is not a summary of a longer policy. It is the whole policy. What follows is the detail that makes it checkable.
Feed-elity runs on https://www.strava.com/dashboard. It reads the activity cards
already rendered on that page, decides which ones you probably do not want to scroll past,
and folds those into a one-line summary you can click open again. Nothing is removed from the
page and nothing is altered on Strava's servers.
| Data | Where it lives | Why |
|---|---|---|
| Your filter settings — thresholds, keywords, per-athlete rules, units, theme, filter order | chrome.storage.sync |
So your settings survive a browser restart, and follow you to other Chrome profiles you are signed into |
| Names and Strava numeric ids of athletes seen in your feed | chrome.storage.local |
So the settings panel can show a name next to a rule instead of a bare id. Never leaves your browser |
| Sports and the unit (km/mi) your feed renders in | chrome.storage.local |
So the panel offers the sports you actually see, in the units Strava is already using |
| Diagnostics, only while you tick “Record diagnostics” | chrome.storage.local |
For you to copy and paste when reporting a bug. Off by default, and clearable from the options page |
chrome.storage.sync is Chrome's own sync, between your own signed-in Chrome
profiles. It does not pass through any server operated by this extension's author, because
there is no such server.
fetch,
XMLHttpRequest, or navigator.sendBeacon. There is no endpoint to
send data to. In the source, this returns nothing:
grep -rE 'fetch\(|XMLHttpRequest|sendBeacon' extension/
storage — to save your settings and the observed athlete and sport names described above. Nothing else uses it.https://www.strava.com/dashboard* — the content script is declared for that URL only. It cannot run on any other site, including the rest of strava.com. There is no <all_urls> and no activeTab.
Removing the extension from chrome://extensions deletes everything it stored. You
can also clear recorded diagnostics at any time from the extension's options page.
Feed-elity is an independent, unofficial tool. It is not affiliated with, endorsed by, or connected to Strava, Inc. “Strava” is referenced only to describe the site this extension works with.
Questions or a problem: email angry.bee.software@gmail.com.