Wiki Reader

Adjusts Formatting of Wiki Pages for better readability

Co to jest Wiki Reader?

Wiki Reader to rozszerzenie Chrome opracowane przez Johnbuble, a jego główną funkcją jest „Adjusts Formatting of Wiki Pages for better readability”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Wiki Reader

Pobierz pliki rozszerzeń Wiki 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

                        This Chrome Extension modifies wikipedia webpages to:
- limit the horizontal space
- turn the page to dark mode
for better readability, especially on large screens.

No tracking, no ads.                    

Podstawowe informacje o rozszerzeniu

Nazwa Wiki Reader Wiki Reader
ID jdkaiipcpgdgbbiepihiggaflgipbnhb
Oficjalny URL https://chromewebstore.google.com/detail/wiki-reader/jdkaiipcpgdgbbiepihiggaflgipbnhb
Opis Adjusts Formatting of Wiki Pages for better readability
Rozmiar pliku 42.25 KB
Liczba instalacji 110
Aktualna Wersja 0.4
Ostatnia Aktualizacja 2020-09-21
Data Publikacji 2020-07-05
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper Johnbuble
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/OlJohnny/Wiki-Reader
Adres URL Strony Pomocy https://github.com/OlJohnny/Wiki-Reader/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wiki Reader",
    "description": "Adjusts Formatting of Wiki Pages for better readability",
    "author": "Johnbuble",
    "version": "0.4",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Wiki Reader",
        "default_icon": {
            "38": "icons\/icon_38.png",
            "19": "icons\/icon_19.png"
        }
    },
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.wikipedia.org\/*"
            ],
            "run-at": "document_start",
            "css": [
                "content.css"
            ]
        }
    ]
}