Smart RSS

RSS Reader

Smart RSS란 무엇입니까?

Smart RSS은(는) zakius에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "RSS Reader"입니다.

확장 프로그램 스크린샷

screenshot

Smart RSS 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Smart RSS allows you to follow new posts on your favorite websites exposing RSS and Atom feeds in a three pane view, providing background loading of new articles and allowing you to organize sources into folders.                    

확장 프로그램 기본 정보

이름 Smart RSS Smart RSS
ID eggggihfcaabljfpjiiaohloefmgejic
공식 URL https://chromewebstore.google.com/detail/smart-rss/eggggihfcaabljfpjiiaohloefmgejic
설명 RSS Reader
파일 크기 333 KB
설치 횟수 3,000
현재 버전 2.25.2
최근 업데이트 2023-03-09
출시 날짜 2020-06-20
평점 4.48/5 총 25 개의 평점
개발자 zakius
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/SmartRSS/Smart-RSS
도움말 페이지 URL https://github.com/SmartRSS/Smart-RSS
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smart RSS",
    "description": "RSS Reader",
    "manifest_version": 2,
    "version": "2.25.2",
    "background": {
        "page": "index.html"
    },
    "permissions": [
        "unlimitedStorage",
        "contextMenus",
        "alarms",
        "tabs",
        "",
        "notifications"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "browser_action": {
        "default_title": "Smart RSS",
        "default_icon": {
            "19": "images\/reload_anim_1.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "rssDetector\/scan.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "19": "images\/icon19-arrow-orange.png",
        "48": "images\/48-inverted-round.png",
        "64": "images\/64-inverted-round.png",
        "96": "images\/96-inverted-round.png",
        "128": "images\/128-inverted-round.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+R",
                "mac": "Command+Shift+R",
                "chromeos": "Ctrl+Shift+R",
                "linux": "Ctrl+Shift+R"
            }
        }
    }
}