Postlight Reader

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

¿Qué es Postlight Reader?

Postlight Reader es una extensión de Chrome desarrollada por Postlight, y su función principal es "Postlight Reader - Clear away the clutter from all of your articles. Instantly.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Postlight Reader

Descarga archivos de extensión Postlight Reader en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Postlight Reader Postlight Reader
ID oknpjjbmpnndlpmnhmekjpocelpnlfdi
URL Oficial https://chromewebstore.google.com/detail/postlight-reader/oknpjjbmpnndlpmnhmekjpocelpnlfdi
Descripción Postlight Reader - Clear away the clutter from all of your articles. Instantly.
Tamaño del Archivo 7.02 MB
Cantidad de Instalaciones 1,272,308
Versión Actual 10
Última Actualización 2023-03-02
Fecha de Publicación 2019-12-05
Calificación 3.87/5 Total de 1716 Calificaciones
Desarrollador Postlight
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://reader.postlight.com
URL de la Página de Ayuda https://reader.postlight.com
Idiomas Soportados 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": [
                ""
            ]
        }
    ]
}