Focus Reader View

Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.

Co to jest Focus Reader View?

Focus Reader View to rozszerzenie Chrome opracowane przez kortina, a jego główną funkcją jest „Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Focus Reader View

Pobierz pliki rozszerzeń Focus Reader View 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

                        Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.

* ctrl+shift+o keyboard shortcut (or use the button)
* large font size for easy reading
* sensible line width
* simple black Helvetica on a white background                    

Podstawowe informacje o rozszerzeniu

Nazwa Focus Reader View Focus Reader View
ID fbhngbllhjggfpkeeiddgkkliacmegin
Oficjalny URL https://chrome.google.com/webstore/detail/focus-reader-view/fbhngbllhjggfpkeeiddgkkliacmegin
Opis Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.
Rozmiar pliku 804 KB
Liczba instalacji 931
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2017-06-03
Data Publikacji 2017-06-03
Ocena 2.94/5 Łącznie 18 Oceny
Deweloper kortina
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/kortina/focus-reader-view-chrome-extension/
Adres URL Strony Pomocy https://github.com/kortina/focus-reader-view-chrome-extension/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Focus Reader View",
    "description": "Distraction-free reading view like Safari Reader View, Readability, or Chromium Distiller DOM.",
    "version": "0.0.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "images\/focus-reader-view16.png",
        "48": "images\/focus-reader-view48.png",
        "128": "images\/focus-reader-view128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "images\/focus-reader-view19.png",
            "38": "images\/focus-reader-view38.png"
        },
        "default_title": "Distraction-free reading."
    },
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "focus-reader.css"
            ],
            "js": [
                "jquery.min.1.3.2.js",
                "content.js"
            ]
        }
    ]
}