This browser extension allows you to add your favorite sites' RSS or Atom feeds to Feedly. Add to Feedly Plus is able to handle multiple newsfeeds.
Many websites publish content via RSS or Atom feeds, but the links to them are often hidden in the page's code. This extension makes them easy to find and use.
- Click the “Add to Feedly” button in your toolbar to instantly see all feeds available on the current page.
- Subscribe to any feed with a couple of clicks.
- Use the keyboard shortcut
Ctrl+Shift+F
for quick access. - Supports both dark and light browser themes.
Supported browsers:
- Compatible with WebExtension API:
- Chrome
The following instruction works on Ubuntu 24.04:
-
Make sure you're using correct version of Nodejs:
node -v # Should be v22
-
make sure you're using correct version of NPM:
npm -v # Should be 10.9
-
install dependencies:
npm install
-
start building process:
npm run build
-
resulting archive should be in the
dist
directory:ls dist # Should contain web-ext.zip
-
Build the extension with the following command:
npm run build
-
Launch the extension in debug mode in the browser:
-
Desktop Firefox:
npx web-ext run -s dist/web-ext/ --devtools
-
Firefox for Android:
-
Print a list of connected Android devices and their IDs:
adb devices
-
Launch the extension on the specified device:
npx web-ext run -s dist/web-ext/ -t firefox-android --adb-device <DEVICE> --firefox-apk org.mozilla.fenix
-
Chromium:
npx web-ext run -s dist/chrome/ -t chromium
-