Wiki Reader

Adjusts Formatting of Wiki Pages for better readability

Cos'è Wiki Reader?

Wiki Reader è un'estensione di Chrome sviluppata da Johnbuble, e la sua funzione principale è "Adjusts Formatting of Wiki Pages for better readability".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Wiki Reader

Scarica i file di estensione Wiki Reader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Wiki Reader Wiki Reader
ID jdkaiipcpgdgbbiepihiggaflgipbnhb
URL Ufficiale https://chromewebstore.google.com/detail/wiki-reader/jdkaiipcpgdgbbiepihiggaflgipbnhb
Descrizione Adjusts Formatting of Wiki Pages for better readability
Dimensione del File 42.25 KB
Conteggio Installazioni 110
Versione Corrente 0.4
Ultimo Aggiornamento 2020-09-21
Data di Pubblicazione 2020-07-05
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Johnbuble
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/OlJohnny/Wiki-Reader
URL della Pagina di Aiuto https://github.com/OlJohnny/Wiki-Reader/issues
Lingue Supportate 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"
            ]
        }
    ]
}