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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allow to send articles to Quiet Reader app, a free Mac app that let's you read articles distraction free."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Quiet Reader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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": []
        }
    ]
}