Foxish live RSS
RSS feed reader in the style of Firefox's live bookmarks.
Foxish live RSS क्या है?
Foxish live RSS https://www.davidhampgonsalves.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "RSS feed reader in the style of Firefox's live bookmarks."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Foxish live RSS एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | nbhdikhnaigcdlamenbgkmllgmfnngoi |
आधिकारिक URL | 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" } |