Quiet Reader

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

Wat is Quiet Reader?

Quiet Reader is een Chrome-extensie ontwikkeld door Zeppelin Labs, en de belangrijkste functie is "This extension allow to send articles to Quiet Reader app, a free Mac app that let's you read articles distraction free.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Quiet Reader

Download Quiet Reader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Quiet Reader Quiet Reader
ID kgeahcccofnebpbbafkpfijjlhfipgnb
Officiële URL https://chromewebstore.google.com/detail/quiet-reader/kgeahcccofnebpbbafkpfijjlhfipgnb
Beschrijving This extension allow to send articles to Quiet Reader app, a free Mac app that let's you read articles distraction free.
Bestandsgrootte 96.28 KB
Aantal Installaties 5,642
Huidige Versie 0.39.0
Laatst Bijgewerkt 2022-04-06
Publicatiedatum 2022-03-03
Beoordeling 2.55/5 Totaal 11 Beoordelingen
Ontwikkelaar Zeppelin Labs
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.quietreader.app/
Help Pagina-URL https://www.quietreader.app/
Ondersteunde Talen 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": []
        }
    ]
}