Postlight Reader

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

Postlight Reader란 무엇입니까?

Postlight Reader은(는) Postlight에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Postlight Reader - Clear away the clutter from all of your articles. Instantly."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Postlight Reader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Postlight Reader Postlight Reader
ID oknpjjbmpnndlpmnhmekjpocelpnlfdi
공식 URL https://chromewebstore.google.com/detail/postlight-reader/oknpjjbmpnndlpmnhmekjpocelpnlfdi
설명 Postlight Reader - Clear away the clutter from all of your articles. Instantly.
파일 크기 7.02 MB
설치 횟수 1,272,308
현재 버전 10
최근 업데이트 2023-03-02
출시 날짜 2019-12-05
평점 3.87/5 총 1716 개의 평점
개발자 Postlight
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://reader.postlight.com
도움말 페이지 URL https://reader.postlight.com
지원되는 언어 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": [
                ""
            ]
        }
    ]
}