Postlight Reader

Postlight Reader - Clear away the clutter from all of your articles. Instantly.

Cos'è Postlight Reader?

Postlight Reader è un'estensione di Chrome sviluppata da Postlight, e la sua funzione principale è "Postlight Reader - Clear away the clutter from all of your articles. Instantly.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Postlight Reader

Scarica i file di estensione Postlight 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

                        The Postlight Reader extension for Chrome removes ads and distractions, leaving only text and images for a clean and consistent reading view on every site.

Features:
 - Disable surrounding webpage noise and clutter with one click
 - Send To Kindle functionality
 - Adjust typeface and text size, and toggle between light or dark themes
 - Quick keyboard shortcut (Cmd + Esc for Mac users, Alt + ` for Windows users) to switch to Reader on any article page
 - Printing optimization
 - Sharing through Facebook, Twitter and Email                    

Informazioni di Base sull'Estensione

Nome Postlight Reader Postlight Reader
ID oknpjjbmpnndlpmnhmekjpocelpnlfdi
URL Ufficiale https://chromewebstore.google.com/detail/postlight-reader/oknpjjbmpnndlpmnhmekjpocelpnlfdi
Descrizione Postlight Reader - Clear away the clutter from all of your articles. Instantly.
Dimensione del File 7.02 MB
Conteggio Installazioni 1,272,308
Versione Corrente 10
Ultimo Aggiornamento 2023-03-02
Data di Pubblicazione 2019-12-05
Valutazione 3.87/5 Totale 1716 Valutazioni
Sviluppatore Postlight
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://reader.postlight.com
URL della Pagina di Aiuto https://reader.postlight.com
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Postlight Reader",
    "description": "Postlight Reader - Clear away the clutter from all of your articles. Instantly.",
    "version": "10",
    "permissions": [
        "contextMenus",
        "tabs",
        "storage",
        "activeTab"
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "",
                "*:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "manifest_version": 3,
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_title": "Postlight Reader"
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "app.html",
                "root-url-warning.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}