QFeeds

Reader of RSS feeds

QFeeds란 무엇입니까?

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

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        * Local storage is used to keep feed subscriptions and metadata (IndexedDB)
* No server side for processing of data (it is able to read intranet feeds, for example)
* QFeeds is free software distributed under the terms of the BSD (FreeBSD) License, collaboratively developed on GitHub                    

확장 프로그램 기본 정보

이름 QFeeds QFeeds
ID kdjijdhlleambcpendblfhdmpmfdbcbd
공식 URL https://chromewebstore.google.com/detail/qfeeds/kdjijdhlleambcpendblfhdmpmfdbcbd
설명 Reader of RSS feeds
파일 크기 460 KB
설치 횟수 218
현재 버전 0.13.0
최근 업데이트 2022-09-26
출시 날짜 2020-03-22
평점 3.88/5 총 8 개의 평점
개발자 peter m.
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/pmarinov/rrss
도움말 페이지 URL https://docs.google.com/forms/d/1IwrZ7zZKstONRd2_2ReUHkvO1aMNsO8veggNL2rUg5s/viewform?c=0&w=1&usp=mail_form_link
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QFeeds",
    "version": "0.13.0",
    "short_name": "qfeeds",
    "description": "Reader of RSS feeds",
    "oauth2": {
        "client_id": "1043072112628-tbg2533tg0vts1ihq5c9m12m2b9kk9cs.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/drive"
        ]
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoO1iZCU5dZ5caHyxNF\/zD7tfLvmoehEu2xMeqDyQM+Fvo4mf2zVTedCQF1QusbwserLP64qij402L29EiUBAk8Qyh\/3qUEAvkyD0Ep3L51P9IQdmk77f6SY+kKztxyV3hU269jV7ftzJ5G2qv7D2F\/l5HJaOrLRV8ndBvLfAEo8qi8bMCGjV30lmR1zogSgMA92KJwy6DxFME3gPBTycjAkffgNdRdnoIiS8bngNPat+h\/QWFnsHaRRXDNkBorfdhM0bptwqAuQ8X1AZBDqS9k7amYw1PRBJlRsOTqJ2ilshKO\/OSIF8iPlIOB9tJoVYkv8GnqovcbYV5IGv3mSXVQIDAQAB",
    "icons": {
        "128": "chrome\/icon_rss.png"
    },
    "permissions": [
        "downloads",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "content_scripts": [
        {
            "js": [
                "chrome\/sniff_common.js",
                "chrome\/doc_start.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "chrome\/sniff_common.js",
                "chrome\/feed_finder.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "QFeeds (devel)",
        "default_icon": "chrome\/icon_rss.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "chrome\/background.js"
        ]
    }
}