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 |
| 官方網址 | 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": [
"*"
]
} | |