Quiet Reader

This extension allow to send articles to Quiet Reader app, a free Mac app that let's you read articles distraction free.

Quiet Readerとは何ですか?

Quiet ReaderはZeppelin Labsによって開発されたChromeの拡張機能で、その主な機能は「This extension allow to send articles to Quiet Reader app, a free Mac app that let's you read articles distraction free.」です。

拡張機能のスクリーンショット

screenshot

Quiet Reader拡張機能のCRXファイルをダウンロード

Quiet Reader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Quiet Reader extension to send articles to Quiet Reader app. Quiet Reader is a free Mac app that let's you read articles (from your browser) or text highlights (from any app) distraction free. We take away all the ads, notifications, tabs and messy desktop so you can focus on what you're reading.

** Please note your need the accompanying Mac app for this extension to work! **                    

拡張機能の基本情報

名前 Quiet Reader Quiet Reader
ID kgeahcccofnebpbbafkpfijjlhfipgnb
公式URL https://chromewebstore.google.com/detail/quiet-reader/kgeahcccofnebpbbafkpfijjlhfipgnb
説明 This extension allow to send articles to Quiet Reader app, a free Mac app that let's you read articles distraction free.
ファイルサイズ 96.28 KB
インストール数 5,642
現在のバージョン 0.39.0
最終更新日 2022-04-06
公開日 2022-03-03
評価 2.55/5 合計 11 レビュー
開発者 Zeppelin Labs
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.quietreader.app/
ヘルプページのURL https://www.quietreader.app/
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "This extension allow to send articles to Quiet Reader app, a free Mac app that let's you read articles distraction free.",
    "version": "0.39.0",
    "manifest_version": 3,
    "name": "Quiet Reader",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "commands": {
        "sendTextToQuietReader": {
            "suggested_key": "Ctrl+Shift+Comma",
            "description": "Sends article to Quiet Reader App"
        }
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}