CheatSheet

Enhance accessibility for Neurodivergence when browsing

O que é CheatSheet?

CheatSheet é uma extensão do Chrome desenvolvida por tmcgraphic, e sua principal característica é "Enhance accessibility for Neurodivergence when browsing".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão CheatSheet

Baixe arquivos de extensão CheatSheet 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

                        CheatSheet is a free to us, open-source browser extension aimed at making navigating the internet easier to neurodivergent students. Currently, CheatSheet’s tools cater to users with Dyslexia, Dyscalculia and ADHD.

CheatSheet was developed as part of my final year college project. That being said, I plan to continue updating the extension and adding new features.                    

Informações Básicas da Extensão

Nome CheatSheet CheatSheet
ID mgfdddgcpjkoondkodggdigadgjjklgo
URL Oficial https://chromewebstore.google.com/detail/cheatsheet/mgfdddgcpjkoondkodggdigadgjjklgo
Descrição Enhance accessibility for Neurodivergence when browsing
Tamanho do Arquivo 26.44 KB
Contagem de Instalações 51
Versão Atual 0.9
Última Atualização 2023-04-23
Data de Publicação 2023-04-22
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor tmcgraphic
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://cheatsheetextension.netlify.app/
URL da Página de Política de Privacidade https://tomcreigh.github.io/CheatSheet-Privacy-Policy
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CheatSheet",
    "description": "Enhance accessibility for Neurodivergence when browsing",
    "version": "0.9",
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "img\/icon_16.png",
            "32": "img\/icon_32.png",
            "48": "img\/icon_48.png",
            "128": "img\/icon_128.png"
        },
        "default_popup": "popup.html"
    },
    "options_page": "options\/options.html",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ]
}