Foxish live RSS

RSS feed reader in the style of Firefox's live bookmarks.

什麼是Foxish live RSS?

Foxish live RSS是由https://www.davidhampgonsalves.com開發的Chrome擴展程式,該擴展的主要功能是“RSS feed reader in the style of Firefox's live bookmarks.”。

擴展截圖

screenshot
screenshot
screenshot

下載Foxish live RSS擴展crx文件

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

擴展使用說明

                        Due to Google deprecating Manifest version 2 this extension was rewritten and renamed to Live Rss Bookmarks. It can be found here - https://chrome.google.com/webstore/detail/live-rss-bookmarks/hdabapllcefknagcjlhcpbnlnkbofndn



This extension mimics the excellent native handling of RSS and Atom feed reading in Firefox using live bookmarks.  It does this by syncing RSS feeds with bookmark folders and syncing them at a configured interval.

Install this extension and get back to non-obtrusive and easy to use RSS/Atom feed reading.

* Supports import/export of feeds from other RSS readers using OPML.
* Auto detects RSS/Atom feeds on web pages. (ported from Googles RSS Subscription).

Chrome Limitations
The Chrome API has limitations on the number of bookmark actions(add, remove, move) that extensions can perform in a period of time so this extension tries to do as little as possible.  Even so it is possible(I never have though) to hit these limits and the extension will have to wait for an hour before it can continue.  In that case you'll be able to see the error in the error log page which is accessible from the options page.

If you use chrome's bookmark sync it will cause multiple items in the feeds since chrome will sync your feed folders as well.  You shouldn't use this extension with the core bookmark feature.  Some other bookmark sync extensions allow you to get around this by filtering out the feed folders.                    

擴展基本資訊

名稱 Foxish live RSS Foxish live RSS
ID nbhdikhnaigcdlamenbgkmllgmfnngoi
官方網址 https://chromewebstore.google.com/detail/foxish-live-rss/nbhdikhnaigcdlamenbgkmllgmfnngoi
簡介 RSS feed reader in the style of Firefox's live bookmarks.
檔案大小 133 KB
安裝次數 2,636
目前版本 4.2
更新時間 2023-10-05
上架時間 2014-10-14
評分 3.76/5 共 49 次評分
開發者 https://www.davidhampgonsalves.com
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.davidhampgonsalves.com
說明頁面URL http://www.davidhampgonsalves.com/foxish_faq.html
隱私政策頁面URL https://davidhampgonsalves.com/contact-identicons-privacy_policy.html
支援的語言 id,de,en,en-GB,fr,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,hi,th,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "manifest_version": 2,
    "background": {
        "scripts": [
            "scripts\/jquery.min.js",
            "scripts\/jquery.jfeed.js",
            "scripts\/options_utils.js",
            "scripts\/settings.js",
            "scripts\/log_utils.js",
            "scripts\/feed_util.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/sniff_common.js",
                "scripts\/doc_start.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "scripts\/sniff_common.js",
                "scripts\/feed_finder.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "default_locale": "en",
    "description": "RSS feed reader in the style of Firefox's live bookmarks.",
    "icons": {
        "128": "icons\/icon_128.png",
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png"
    },
    "name": "Foxish live RSS",
    "options_page": "options.html",
    "page_action": {
        "default_icon": "icons\/icon_48.png",
        "default_title": "__MSG_rss_subscription_default_title__",
        "default_popup": "popup.html"
    },
    "permissions": [
        "bookmarks",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "tabs"
    ],
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "4.2"
}