RSS Feed Reader

Get a simple overview of your RSS and Atom feeds in the toolbar

Vad är RSS Feed Reader?

RSS Feed Reader är en Chrome-tillägg utvecklad av https://feeder.co, och dess huvudfunktion är "Get a simple overview of your RSS and Atom feeds in the toolbar".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner RSS Feed Reader-förlängningens CRX-fil

Ladda ner RSS Feed Reader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Keep up with everything you care about in one place with Feeder (www.feeder.co). Feeder is the news manager that tracks any online source you choose and bundles it into an easy-to-digest reading experience. Have any questions? We're always listening at [email protected]

The best RSS Feed Reader extension for Chrome.

- Instantaneously see when new posts are added to one of your RSS and Atom feeds
- Easily subscribe to new RSS/Atom feeds by clicking the browser icon
- Intuitively manage your feeds
- Right click context-menus in popup-menu let you mark all as read, reload feeds, and other nifty shortcuts
- Export your feeds so you can import them on another computer and/or keep them as backups for safekeeping
- Customize your feeds by choosing how many posts to display, or changing the title
- Organize your feeds using folders and sorting with drag and drop
- Choose between two different themes: Dark or Light 
- Everything is contained within the browser so no other third-party sites are needed
- Notifications when feeds have been updated. Enable globally or on select feeds
- Supports both RSS and Atom feeds
- See when a page has any RSS or Atom feeds to subscribe to
- Sound notifications
- Mobile apps

Collect and organize content like a Pro, subscribe to Feeder Pro (more information on feeder.co)

- 1 minute updates
- Filters, rules and collections

If you have any feedback, bugs or issues, we're always listening on our support channel: [email protected]. If any RSS or Atom feeds don't work please report it to us.

Brought to you by Really Simple AB from Stockholm, Sweden, the RSS Feed Reader team. Have fun with RSS and Atom!

Changelog:

V7.9.0
- New RSS feed subscription page. Beautiful new design, custom reader options and more.
- New options for the post list - Images and a short excerpt.

V7.8.3
- Add a menu option to quickly add new feeds
- Fix bug causing middle-click queue to not open new tabs

V7.8.2
- Attempt fixes with settings not being saved properly
- Fix issue with listing posts in the correct order

V7.8.1
- Migrator bug fixes

V7.8.0
- This releases changes the local database use for storing feeds for no-account users. A migration might need to happen which can cause the extension to be unresponsive for some time. If you have any questions please contact us at [email protected]

V7.7.5
- Fix display issue for posts on web reader

V7.7.4
- Fix some users not being able to delete feeds

V7.7.0
- New themes! Sand and Dark
- Fix crashes when importing OPML files
- Mark posts older than 7 days or 30 days as read
- Cleanup a lot of old code
- Fix minor bugs with 'Are you sure you want to mark X posts as read?'

V7.6.14
- Improve how Feeder reconnects when starting Chrome
- Fix an issue when marking all as read in web reader

You can read old release notes here: https://feeder.co/help/extension/release-notes-for-extension/

Thanks for reading this far!                    

Grundläggande Information om Tillägg

Namn RSS Feed Reader RSS Feed Reader
ID pnjaodmkngahhkoihejjehlcdlnohgmp
Officiell webbadress https://chromewebstore.google.com/detail/rss-feed-reader/pnjaodmkngahhkoihejjehlcdlnohgmp
Beskrivning Get a simple overview of your RSS and Atom feeds in the toolbar
Filstorlek 995 KB
Antal Installationer 594,188
Aktuell Version 7.9.0
Senast Uppdaterad 2022-03-28
Publiceringsdatum 2020-06-27
Betyg 4.35/5 Totalt 6985 Betyg
Utvecklare https://feeder.co
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://feeder.co/
Hjälpsida URL https://feeder.co/support/
URL till Sekretesspolicy Sidan https://feeder.co/privacy
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RSS Feed Reader",
    "short_name": "feeder",
    "version": "7.9.0",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "Get a simple overview of your RSS and Atom feeds in the toolbar",
    "icons": {
        "19": "extension-icons\/icon-retina.png",
        "48": "extension-icons\/icon48x48.png",
        "128": "extension-icons\/icon128x128.png"
    },
    "browser_action": {
        "default_icon": "extension-icons\/icon-retina.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "content\/page_plugin.js"
            ]
        },
        {
            "matches": [
                "http:\/\/feeder.co\/*",
                "http:\/\/*.feeder.co\/*",
                "https:\/\/feeder.co\/*",
                "https:\/\/*.feeder.co\/*"
            ],
            "run_at": "document_end",
            "js": [
                "feeder_api.js"
            ]
        }
    ],
    "background": {
        "page": "main.html"
    },
    "background_page": "main.html",
    "web_accessible_resources": [
        "extension-icons\/icon48x48.png",
        "extension-icons\/bar-buttons-good_2x.png",
        "extension-icons\/icon-retina.png",
        "extension-icons\/[email protected]"
    ],
    "options_page": "settings_redirect.html",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/www.google-analytics.com; object-src 'self'",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+R",
                "linux": "Ctrl+Shift+R",
                "windows": "Ctrl+Shift+R",
                "mac": "Alt+Shift+R"
            }
        }
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "chrome:\/\/favicon\/",
        "storage",
        "notifications",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        "unlimitedStorage",
        "contextMenus"
    ]
}