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
电子邮箱 [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": []
        }
    ]
}