RSS Feed Reader
Get a simple overview of your RSS and Atom feeds in the toolbar
RSS Feed Reader là gì?
RSS Feed Reader là một tiện ích mở rộng Chrome được phát triển bởi https://feeder.co, và tính năng chính của nó là "Get a simple overview of your RSS and Atom feeds in the toolbar".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng RSS Feed Reader
Tải xuống các tệp mở rộng RSS Feed Reader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | RSS Feed Reader |
ID | pnjaodmkngahhkoihejjehlcdlnohgmp |
URL Chính Thức | https://chromewebstore.google.com/detail/rss-feed-reader/pnjaodmkngahhkoihejjehlcdlnohgmp |
Mô tả | Get a simple overview of your RSS and Atom feeds in the toolbar |
Kích Thước Tệp | 995 KB |
Số Lần Cài Đặt | 594,188 |
Phiên Bản Hiện Tại | 7.9.0 |
Cập Nhật Lần Cuối | 2022-03-28 |
Ngày Phát Hành | 2020-06-27 |
Đánh Giá | 4.35/5 Tổng số 6985 Đánh Giá |
Nhà Phát Triển | https://feeder.co |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://feeder.co/ |
URL Trang Trợ Giúp | https://feeder.co/support/ |
URL Trang Chính Sách Bảo Mật | https://feeder.co/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |