Shoyu RSS/Atom Feed Preview
Simple feed preview and subscribe.
Shoyu RSS/Atom Feed Previewとは何ですか?
Shoyu RSS/Atom Feed Previewはcmacgregによって開発されたChromeの拡張機能で、その主な機能は「Simple feed preview and subscribe.」です。
拡張機能のスクリーンショット
Shoyu RSS/Atom Feed Preview拡張機能のCRXファイルをダウンロード
Shoyu RSS/Atom Feed Preview拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
* discover RSS/Atom feeds from web sites * display feeds within Chrome, sorted by date * subscribe to a feed with an online or local reader Feed discovery and subscription are derived from the RSS Subscription Extension (by Google) version 2.2.2. Feed preview has been enhanced to: * support more standard feed containers * reduce HTML formatting * remove embedded media * (somewhat) allow use of style sheets compatible with Sage RSS for Mozilla Firefox * support RSS enclosures * allow desktop reader use Recent changes: * default subscription URL updates For feed updates, directly within Chrome, check out "Shoyu Feed Updates" at: https://chrome.google.com/extensions/detail/opnimlbiokbgomihhpobbgnlfolgdada
拡張機能の基本情報
名前 | |
ID | ilicaedjojicckapfpfdoakbehjpfkah |
公式URL | https://chrome.google.com/webstore/detail/shoyu-rssatom-feed-previe/ilicaedjojicckapfpfdoakbehjpfkah |
説明 | Simple feed preview and subscribe. |
ファイルサイズ | 52.13 KB |
インストール数 | 8,000 |
現在のバージョン | 2.0.3.18 |
最終更新日 | 2018-04-08 |
公開日 | 2018-04-08 |
評価 | 4.44/5 合計 73 レビュー |
開発者 | cmacgreg |
支払い方法 | free |
拡張機能のウェブサイト | http://code.google.com/p/shoyu/ |
ヘルプページのURL | http://twitter.com/cmacgreg |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": true, "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "sniff_common.js", "doc_start.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" }, { "js": [ "sniff_common.js", "feed_finder.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "description": "Simple feed preview and subscribe.", "icons": { "128": "shoyu-icon-128x128.png" }, "name": "Shoyu RSS\/Atom Feed Preview", "options_page": "options.html", "page_action": { "default_icon": "feed-icon-16x16.png", "default_title": "Discover Feeds", "default_popup": "popup.html" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "version": "2.0.3.18", "manifest_version": 2, "web_accessible_resources": [ "*" ] } |