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 là gì?

Quiet Reader là một tiện ích mở rộng Chrome được phát triển bởi Zeppelin Labs, và tính năng chính của nó là "This extension allow to send articles to Quiet Reader app, a free Mac app that let's you read articles distraction free.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Quiet Reader

Tải xuống các tệp mở rộng Quiet Reader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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! **                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Quiet Reader Quiet Reader
ID kgeahcccofnebpbbafkpfijjlhfipgnb
URL Chính Thức https://chromewebstore.google.com/detail/quiet-reader/kgeahcccofnebpbbafkpfijjlhfipgnb
Mô tả This extension allow to send articles to Quiet Reader app, a free Mac app that let's you read articles distraction free.
Kích Thước Tệp 96.28 KB
Số Lần Cài Đặt 5,642
Phiên Bản Hiện Tại 0.39.0
Cập Nhật Lần Cuối 2022-04-06
Ngày Phát Hành 2022-03-03
Đánh Giá 2.55/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Zeppelin Labs
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.quietreader.app/
URL Trang Trợ Giúp https://www.quietreader.app/
Ngôn Ngữ Được Hỗ Trợ 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": []
        }
    ]
}