Follow websites (RSS Reader)

Follow any website which offers an RSS feed and decide how to receive messages, i.e. via Email, Telegram etc.

Follow websites (RSS Reader)란 무엇입니까?

Follow websites (RSS Reader)은(는) https://follow.it에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Follow any website which offers an RSS feed and decide how to receive messages, i.e. via Email, Telegram etc."입니다.

확장 프로그램 스크린샷

screenshot

Follow websites (RSS Reader) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The easiest tool to follow websites (or to be more precise: their RSS feeds).                    

확장 프로그램 기본 정보

이름 Follow websites (RSS Reader) Follow websites (RSS Reader)
ID ncepinjclfmeppajckcgpamhfpjnjabn
공식 URL https://chromewebstore.google.com/detail/follow-websites-rss-reade/ncepinjclfmeppajckcgpamhfpjnjabn
설명 Follow any website which offers an RSS feed and decide how to receive messages, i.e. via Email, Telegram etc.
파일 크기 1.38 MB
설치 횟수 1,158
현재 버전 0.1.3
최근 업데이트 2024-03-04
출시 날짜 2022-06-18
평점 5.00/5 총 7 개의 평점
개발자 https://follow.it
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://follow.it/directory
개인정보 보호 정책 페이지 URL https://follow.it/info/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Follow websites (RSS Reader)",
    "version": "0.1.3",
    "description": "Follow any website which offers an RSS feed and decide how to receive messages, i.e. via Email, Telegram etc.",
    "icons": {
        "16": "img\/icons\/icon-16.png",
        "48": "img\/icons\/icon-48.png",
        "128": "img\/icons\/icon-128.png"
    },
    "background": {
        "service_worker": "background\/index.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "browser-polyfill.min.js",
                "content\/index.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "img\/icons\/icon-48.png"
        }
    },
    "permissions": [
        "tabs",
        "storage",
        "alarms"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/follow.it\/*",
            "https:\/\/*.follow.it\/*"
        ]
    },
    "manifest_version": 3
}