CheatSheet

Enhance accessibility for Neurodivergence when browsing

什么是CheatSheet?

CheatSheet是由tmcgraphic开发的Chrome扩展程序,该扩展的主要功能是“Enhance accessibility for Neurodivergence when browsing”。

扩展截图

下载CheatSheet扩展crx文件

下载CheatSheet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 CheatSheet CheatSheet
ID mgfdddgcpjkoondkodggdigadgjjklgo
官方URL https://chromewebstore.google.com/detail/cheatsheet/mgfdddgcpjkoondkodggdigadgjjklgo
简介 Enhance accessibility for Neurodivergence when browsing
文件大小 26.44 KB
安装次数 51
当前版本 0.9
更新时间 2023-04-23
上架时间 2023-04-22
评分 5.00/5 共1次评分
开发者 tmcgraphic
电子邮箱 [email protected]
付费类型 free
扩展官网 https://cheatsheetextension.netlify.app/
隐私政策页面URL https://tomcreigh.github.io/CheatSheet-Privacy-Policy
支持的语言 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"
            ]
        }
    ]
}