Foxish live RSS
RSS feed reader in the style of Firefox's live bookmarks.
Foxish live RSSคืออะไร?
Foxish live RSS เป็นส่วนขยายของ Chrome ที่พัฒนาโดย david hamp-gonsalves และคุณลักษณะหลักของมันคือ "RSS feed reader in the style of Firefox's live bookmarks."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Foxish live RSS
ดาวน์โหลดไฟล์ส่วนขยาย Foxish live RSS ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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. by: David Hamp-Gonsalves
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | jpgagcapnkccceppgljfpoadahaopjdb |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/foxish-live-rss/jpgagcapnkccceppgljfpoadahaopjdb |
คำอธิบาย | RSS feed reader in the style of Firefox's live bookmarks. |
ขนาดไฟล์ | 133 KB |
จำนวนการติดตั้ง | 8,000 |
เวอร์ชันปัจจุบัน | 4.2 |
อัปเดตครั้งล่าสุด | 2017-01-26 |
วันที่เผยแพร่ | 2017-01-26 |
คะแนน | 4.15/5 รวมทั้งหมด 343 คะแนน |
ผู้พัฒนา | david hamp-gonsalves |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.davidhampgonsalves.com |
URL หน้าช่วยเหลือ | http://www.davidhampgonsalves.com/foxish_faq.html |
ภาษาที่รองรับ | id,de,en,en-GB,fr,nl,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,hi,th,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": [ "storage", "bookmarks", "http:\/\/*\/", "https:\/\/*\/", "tabs" ], "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "version": "4.2" } |