Help Me Read!

An extension to help people with dyslexia problem to read web pages easily

Co to jest Help Me Read!?

Help Me Read! to rozszerzenie Chrome opracowane przez https://informatica.math.unipd.it, a jego główną funkcją jest „An extension to help people with dyslexia problem to read web pages easily”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Help Me Read!

Pobierz pliki rozszerzeń Help Me Read! 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

                        Help Me Read! is a powerful tool for people with dyslexia or problem with color vision.
It allows to change the color of the text and of the background, the user can choose between a set of predefined setting, or can autonomously choose the preferred color. 
Moreover this extension also allows to enlarge every single word to help reading.                    

Podstawowe informacje o rozszerzeniu

Nazwa Help Me Read! Help Me Read!
ID kdeafkgaagpgmdbidapennjlnmgdjekj
Oficjalny URL https://chromewebstore.google.com/detail/help-me-read/kdeafkgaagpgmdbidapennjlnmgdjekj
Opis An extension to help people with dyslexia problem to read web pages easily
Rozmiar pliku 52.19 KB
Liczba instalacji 75
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2019-11-15
Data Publikacji 2019-11-14
Deweloper https://informatica.math.unipd.it
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Help Me Read!",
    "version": "0.0.1",
    "manifest_version": 2,
    "author": "Rudy Berton",
    "description": "An extension to help people with dyslexia problem to read web pages easily",
    "icons": {
        "16": "img\/16x16.png",
        "32": "img\/32x32.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Help me read!",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.4.1.min.js",
                "contentScript.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}