Quiet Reader

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

What is Quiet Reader?

Quiet Reader is a Chrome extension developed by Zeppelin Labs, and its main feature is "This extension allow to send articles to Quiet Reader app, a free Mac app that let's you read articles distraction free.".

Extension Screenshots

screenshot

Download Quiet Reader Extension CRX File

Download Quiet Reader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Quiet Reader Quiet Reader
ID kgeahcccofnebpbbafkpfijjlhfipgnb
Official URL https://chromewebstore.google.com/detail/quiet-reader/kgeahcccofnebpbbafkpfijjlhfipgnb
Description This extension allow to send articles to Quiet Reader app, a free Mac app that let's you read articles distraction free.
File Size 96.28 KB
Installation Count 5,642
Current Version 0.39.0
Last Updated 2022-04-06
Publish Date 2022-03-03
Rating 2.55/5 Total 11 Ratings
Developer Zeppelin Labs
Email [email protected]
Payment Type free
Extension Website https://www.quietreader.app/
Help Page URL https://www.quietreader.app/
Supported Languages 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": []
        }
    ]
}