Sky Reader

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

Co to jest Sky Reader?

Sky Reader to rozszerzenie Chrome opracowane przez Derek Hendricks, a jego główną funkcją jest „Sky Reader is an article formatter designed to heighten your online reading experience.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Sky Reader

Pobierz pliki rozszerzeń Sky Reader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Sky Reader Sky Reader
ID gmahckdeffbfjdbmpjhaijbpiclgjpci
Oficjalny URL https://chromewebstore.google.com/detail/sky-reader/gmahckdeffbfjdbmpjhaijbpiclgjpci
Opis Sky Reader is an article formatter designed to heighten your online reading experience.
Rozmiar pliku 431 KB
Liczba instalacji 33
Aktualna Wersja 2.0.3.2
Ostatnia Aktualizacja 2022-03-18
Data Publikacji 2019-11-30
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Derek Hendricks
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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'"
    }
}