Quiet Reader

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

Cos'è Quiet Reader?

Quiet Reader è un'estensione di Chrome sviluppata da Zeppelin Labs, e la sua funzione principale è "This extension allow to send articles to Quiet Reader app, a free Mac app that let's you read articles distraction free.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Quiet Reader

Scarica i file di estensione Quiet Reader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Quiet Reader Quiet Reader
ID kgeahcccofnebpbbafkpfijjlhfipgnb
URL Ufficiale https://chromewebstore.google.com/detail/quiet-reader/kgeahcccofnebpbbafkpfijjlhfipgnb
Descrizione This extension allow to send articles to Quiet Reader app, a free Mac app that let's you read articles distraction free.
Dimensione del File 96.28 KB
Conteggio Installazioni 5,642
Versione Corrente 0.39.0
Ultimo Aggiornamento 2022-04-06
Data di Pubblicazione 2022-03-03
Valutazione 2.55/5 Totale 11 Valutazioni
Sviluppatore Zeppelin Labs
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.quietreader.app/
URL della Pagina di Aiuto https://www.quietreader.app/
Lingue Supportate 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": []
        }
    ]
}