Newsfeeder Quick-launch

Easily search for news on multiple platforms, find feeds on popular websites and more. Also works as a classic RSS/Atom reader.

Newsfeeder Quick-launch란 무엇입니까?

Newsfeeder Quick-launch은(는) http://esstudio.site에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily search for news on multiple platforms, find feeds on popular websites and more. Also works as a classic RSS/Atom reader."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Newsfeeder Quick-launch 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension quick launches the newsfeeder app, the easiest way to follow news from your favorite websites, blogs and news sites. 

With newsfeeder you load your feeds quickly from other rss readers using the OPML format. You don't need to login, the app is fast and it just works. If you want to give feedback or tips, please send a message: [email protected] or use the contact form: esstudio.site/contact.                    

확장 프로그램 기본 정보

이름 Newsfeeder Quick-launch Newsfeeder Quick-launch
ID kokdfdgkmhaimfmjhcdfehgbhhkcnkmk
공식 URL https://chrome.google.com/webstore/detail/newsfeeder-quick-launch/kokdfdgkmhaimfmjhcdfehgbhhkcnkmk
설명 Easily search for news on multiple platforms, find feeds on popular websites and more. Also works as a classic RSS/Atom reader.
파일 크기 22.91 KB
설치 횟수 19
현재 버전 1.0
최근 업데이트 2019-03-28
출시 날짜 2019-03-25
개발자 http://esstudio.site
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://newsfeeder.esstudio.site
도움말 페이지 URL https://esstudio.site/contact
개인정보 보호 정책 페이지 URL https://echosierrastudio.github.io/EchoSierraStudio/chrome-web-extensions-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Newsfeeder Quick-launch",
    "short_name": "Newsfeeder",
    "version": "1.0",
    "description": "Easily search for news on multiple platforms, find feeds on popular websites and more. Also works as a classic RSS\/Atom reader.",
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "*:\/\/*\/*",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "assets\/icon128-grey.png"
    },
    "manifest_version": 2
}