https://github.com/davidhampgonsalves/live-rss-bookmarks
Chrome extension that adds Firefox like RSS/Atom handling
https://github.com/davidhampgonsalves/live-rss-bookmarks
chrome-extension featured javascript rss
Last synced: 6 months ago
JSON representation
Chrome extension that adds Firefox like RSS/Atom handling
- Host: GitHub
- URL: https://github.com/davidhampgonsalves/live-rss-bookmarks
- Owner: davidhampgonsalves
- License: mit
- Created: 2010-12-09T23:51:45.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2024-09-28T16:37:01.000Z (about 1 year ago)
- Last Synced: 2025-04-12T17:22:35.118Z (6 months ago)
- Topics: chrome-extension, featured, javascript, rss
- Language: JavaScript
- Homepage: https://davidhampgonsalves.com/13-years-of-foxish/
- Size: 8.06 MB
- Stars: 54
- Watchers: 9
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![]()
[Live RSS Bookmarks is a Chrome extension](https://chrome.google.com/webstore/detail/live-rss-bookmarks/hdabapllcefknagcjlhcpbnlnkbofndn) that mimics Firefox's old live bookmarks feature (removed since 2018). It does this by syncing bookmarks inside a folder for each RSS feed.
This extension was previously called [Foxish](https://chrome.google.com/webstore/detail/foxish-live-rss/nbhdikhnaigcdlamenbgkmllgmfnngoi?hl=en) but was re-written to support [Chrome Manifest v3](https://developer.chrome.com/docs/extensions/mv3/intro/). At this time it was simplified since Chrome no longer limits bookmark access like it did in the past and efforts were made to future proof it.
## Details
- Uses webpack for commonjs transpiling to esm modules for rss-parser.
- Uses [he](https://github.com/mathiasbynens/he) for HTML entity decoding (can't access DomParser in extension webworkers).
- Support Chrome Manifest v3## Building
`yarn webpack`
## Packaging
```
yarn webpack ; zip -r live-rss.zip build/ html/ images/ styles/ manifest.json
```