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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
* 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": [
"*"
]
} | |