RSS Feed Reader

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

什麼是RSS Feed Reader?

RSS Feed Reader是由https://feeder.co開發的Chrome擴展程式,該擴展的主要功能是“Get a simple overview of your RSS and Atom feeds in the toolbar”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載RSS Feed Reader擴展crx文件

下載RSS Feed Reader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 RSS Feed Reader RSS Feed Reader
ID pnjaodmkngahhkoihejjehlcdlnohgmp
官方網址 https://chromewebstore.google.com/detail/rss-feed-reader/pnjaodmkngahhkoihejjehlcdlnohgmp
簡介 Get a simple overview of your RSS and Atom feeds in the toolbar
檔案大小 995 KB
安裝次數 594,188
目前版本 7.9.0
更新時間 2022-03-28
上架時間 2020-06-27
評分 4.35/5 共 6985 次評分
開發者 https://feeder.co
電子郵箱 [email protected]
付費類型 free
擴展官網 https://feeder.co/
說明頁面URL https://feeder.co/support/
隱私政策頁面URL https://feeder.co/privacy
支援的語言 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"
    ]
}