Sky Reader

Sky Reader is an article formatter designed to heighten your online reading experience.

Was ist Sky Reader?

Sky Reader ist eine Chrome-Erweiterung, die von Derek Hendricks entwickelt wurde, und ihr Hauptmerkmal ist "Sky Reader is an article formatter designed to heighten your online reading experience.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Sky Reader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Sky Reader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Sky reader is a simple, lightweight, and memory efficient online text formatter that features a wide array of customizable settings, designed to enhance the enjoyability, comprehension, and meaning of one's reading experience. 

With Sky Reader, you can quickly and cleanly format article text from any website with one click of a button. 

However, if you wish to format only certain sections of a body of text, you can type or copy and paste text directly into the popup view's input field. This can be helpful for research, note-taking, and summarization of texts.

Each body of formatted text is tied to a specific tab number, allowing you to re-open and view recently formatted articles within the window of any given browsing session.

You can also save any formatted article as a PDF document. Additional space is given to each page, which allows for convenient note taking.

Line gradients are implemented as an optional reading aid, which can allow for smoother, less eye-straining, and more focused reading experiences. For example, with line gradients enabled, the likelihood of one's eye moving to already-read lines of text or skipping lines of text is reduced, enhancing mechanical reading confidence without you even realizing. 

Line gradients are enabled by default, however, if you prefer to read without them, they can be easily disabled.

The "Lightning Read" feature displays single words from the formatted article in rapid succession, which, with practice, can assist you in reading "words per minute" at a rate normally only experienced by speed readers. 

Images, video, advertisements, and other non-text related media content are not included in the formatted text owing to the reading-centric nature of the extension.                    

Grundlegende Informationen zur Erweiterung

Name Sky Reader Sky Reader
ID gmahckdeffbfjdbmpjhaijbpiclgjpci
Offizielle URL https://chromewebstore.google.com/detail/sky-reader/gmahckdeffbfjdbmpjhaijbpiclgjpci
Beschreibung Sky Reader is an article formatter designed to heighten your online reading experience.
Dateigröße 431 KB
Installationsanzahl 33
Aktuelle Version 2.0.3.2
Letztes Update 2022-03-18
Veröffentlichungsdatum 2019-11-30
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Derek Hendricks
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Sky Reader",
    "description": "Sky Reader is an article formatter designed to heighten your online reading experience.",
    "version": "2.0.3.2",
    "permissions": [
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon128.png",
                "favicon.ico",
                "close.png",
                "settings.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "event.js"
    },
    "icons": {
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "action": {
        "default_title": "Sky Reader",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "styles.css",
                "semantic.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}