RssR: Rss Feed Notifier

Grab recent article headlines from RSS feeds

RssR: Rss Feed Notifier란 무엇입니까?

RssR: Rss Feed Notifier은(는) Ruben Medina에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Grab recent article headlines from RSS feeds"입니다.

확장 프로그램 스크린샷

screenshot

RssR: Rss Feed Notifier 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Frustrated by existing RSS reading extensions, I decided to create my own in a soviet inspired design: RssR!

RssR is an RSS Feed Notifier. You add RSS feeds you want to keep track of and the extension automatically checks for newly posted articles to those feeds, then adds a spiffy NEW badge to the extension icon when it finds some! Clicking the icon opens a popup menu that shows the new articles grouped by RSS feed that you can easily scan through and open.

RSS Feeds are updated every 15 minutes. A max of 5 articles per feed are displayed at a time. Feeds are synced across browsers when logged in to Chrome.

Source code is available here: https://github.com/samrum/RssR                    

확장 프로그램 기본 정보

이름 RssR: Rss Feed Notifier RssR: Rss Feed Notifier
ID meaiakcahjfecljnnnjbmnmdmofbjgmg
공식 URL https://chromewebstore.google.com/detail/rssr-rss-feed-notifier/meaiakcahjfecljnnnjbmnmdmofbjgmg
설명 Grab recent article headlines from RSS feeds
파일 크기 94.16 KB
설치 횟수 397
현재 버전 1.0.1
최근 업데이트 2022-05-02
출시 날짜 2016-10-18
평점 3.77/5 총 13 개의 평점
개발자 Ruben Medina
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RssR: Rss Feed Notifier",
    "short_name": "RssR",
    "description": "Grab recent article headlines from RSS feeds",
    "version": "1.0.1",
    "author": "Ruben Medina",
    "browser_action": {
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icons\/128.png",
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png"
    },
    "background": {
        "scripts": [
            "js\/Storage.js",
            "js\/FeedService.js",
            "js\/background.js",
            "js\/jquery-2.1.4.min.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "*:\/\/*\/*",
        "alarms",
        "storage"
    ]
}