OpenDyslexic Font for Chrome

Change the font of web pages to OpenDyslexic Font

O que é OpenDyslexic Font for Chrome?

OpenDyslexic Font for Chrome é uma extensão do Chrome desenvolvida por opendyslexicfont, e sua principal característica é "Change the font of web pages to OpenDyslexic Font".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão OpenDyslexic Font for Chrome

Baixe arquivos de extensão OpenDyslexic Font for Chrome no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        OpenDyslexic Font Changer is a Chrome extension that makes reading on the web easier for people with dyslexia. By changing the font of web pages to OpenDyslexic, a typeface designed to improve readability for readers with dyslexia, this extension helps to reduce the stress and frustration often associated with reading on the web.

With this extension, you can enable or disable the OpenDyslexic font with a simple toggle switch. You can also select the font style you prefer from a dropdown menu, including regular, bold, and italic.

OpenDyslexic Font Changer works on any website, and you can customize the font settings to your liking. The extension is easy to use and helps make reading on the web more accessible for everyone.

Whether you have dyslexia or just find reading on the web challenging, OpenDyslexic Font Changer can help make the reading experience more comfortable and enjoyable. Try OpenDyslexic Font Changer today and experience the benefits of OpenDyslexic for yourself!                    

Informações Básicas da Extensão

Nome OpenDyslexic Font for Chrome OpenDyslexic Font for Chrome
ID gcflfnendjincoakmpkdgkocaoojjnbc
URL Oficial https://chromewebstore.google.com/detail/opendyslexic-font-for-chr/gcflfnendjincoakmpkdgkocaoojjnbc
Descrição Change the font of web pages to OpenDyslexic Font
Tamanho do Arquivo 134 KB
Contagem de Instalações 728
Versão Atual 1.0
Última Atualização 2023-05-02
Data de Publicação 2023-05-02
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor opendyslexicfont
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OpenDyslexic Font for Chrome",
    "version": "1.0",
    "description": "Change the font of web pages to OpenDyslexic Font",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon48.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "fonts\/*.otf"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    }
}