RSS Feed Reader
Get a simple overview of your RSS and Atom feeds in the toolbar
Wat is RSS Feed Reader?
RSS Feed Reader is een Chrome-extensie ontwikkeld door https://feeder.co, en de belangrijkste functie is "Get a simple overview of your RSS and Atom feeds in the toolbar".
Extensie Screenshots
Download het CRX-bestand van de extensie RSS Feed Reader
Download RSS Feed Reader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | RSS Feed Reader |
ID | pnjaodmkngahhkoihejjehlcdlnohgmp |
Officiële URL | https://chromewebstore.google.com/detail/rss-feed-reader/pnjaodmkngahhkoihejjehlcdlnohgmp |
Beschrijving | Get a simple overview of your RSS and Atom feeds in the toolbar |
Bestandsgrootte | 995 KB |
Aantal Installaties | 594,188 |
Huidige Versie | 7.9.0 |
Laatst Bijgewerkt | 2022-03-28 |
Publicatiedatum | 2020-06-27 |
Beoordeling | 4.35/5 Totaal 6985 Beoordelingen |
Ontwikkelaar | https://feeder.co |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://feeder.co/ |
Help Pagina-URL | https://feeder.co/support/ |
URL van de Privacybeleid Pagina | https://feeder.co/privacy |
Ondersteunde Talen | 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" ] } |