CheatSheet

Enhance accessibility for Neurodivergence when browsing

Cos'è CheatSheet?

CheatSheet è un'estensione di Chrome sviluppata da tmcgraphic, e la sua funzione principale è "Enhance accessibility for Neurodivergence when browsing".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione CheatSheet

Scarica i file di estensione CheatSheet 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

                        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.                    

Informazioni di Base sull'Estensione

Nome CheatSheet CheatSheet
ID mgfdddgcpjkoondkodggdigadgjjklgo
URL Ufficiale https://chromewebstore.google.com/detail/cheatsheet/mgfdddgcpjkoondkodggdigadgjjklgo
Descrizione Enhance accessibility for Neurodivergence when browsing
Dimensione del File 26.44 KB
Conteggio Installazioni 51
Versione Corrente 0.9
Ultimo Aggiornamento 2023-04-23
Data di Pubblicazione 2023-04-22
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore tmcgraphic
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://cheatsheetextension.netlify.app/
URL della Pagina della Politica sulla Privacy https://tomcreigh.github.io/CheatSheet-Privacy-Policy
Lingue Supportate 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"
            ]
        }
    ]
}