CheatSheet

Enhance accessibility for Neurodivergence when browsing

Vad är CheatSheet?

CheatSheet är en Chrome-tillägg utvecklad av tmcgraphic, och dess huvudfunktion är "Enhance accessibility for Neurodivergence when browsing".

Tilläggsskärmbilder

Ladda ner CheatSheet-förlängningens CRX-fil

Ladda ner CheatSheet-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn CheatSheet CheatSheet
ID mgfdddgcpjkoondkodggdigadgjjklgo
Officiell webbadress https://chromewebstore.google.com/detail/cheatsheet/mgfdddgcpjkoondkodggdigadgjjklgo
Beskrivning Enhance accessibility for Neurodivergence when browsing
Filstorlek 26.44 KB
Antal Installationer 51
Aktuell Version 0.9
Senast Uppdaterad 2023-04-23
Publiceringsdatum 2023-04-22
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare tmcgraphic
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://cheatsheetextension.netlify.app/
URL till Sekretesspolicy Sidan https://tomcreigh.github.io/CheatSheet-Privacy-Policy
Stödda Språk 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"
            ]
        }
    ]
}