Charlotte

Making the web more accessible for everyone. Provides screen reading, image captioning, high contrast, cursor changes and more!

Charlotteคืออะไร?

Charlotte เป็นส่วนขยายของ Chrome ที่พัฒนาโดย charlotteaccessibility และคุณลักษณะหลักของมันคือ "Making the web more accessible for everyone. Provides screen reading, image captioning, high contrast, cursor changes and more!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Charlotte

ดาวน์โหลดไฟล์ส่วนขยาย Charlotte ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Charlotte aims to make the web more accessible by providing a suite of accessibility tools, all in one handy browser extension. Create an account with us, sign in, and you're ready to go!

Features
 • Select from a choice of 6 text-to-speech voices, adjust pitch and reading speed. 
 • Highlight text by hovering over them, using our Highlight Elements functionality.
 • Use keyboard shortcuts (Alt+Left, Alt+Right) to navigate the page and highlight portions of text
 • Use Read on Highlight to read highlighted text aloud (integrates with Highlight Elements and keyboard shortcuts)
 • Change font size, on a sliding scale from native to 200%
 • Provide image captions on mouse-over, powered by our remote machine learning algorithm
 • Increase cursor size to improve visibility
 • Enable High Contrast mode, for easier browsing
 • Change your font to a host of options, including reader-friendly sans-serif options and OpenDyslexic
 • Focus easier with Focus Ruler

Some functionalities such as Image Captioning is only available to users with an account. 

To navigate Charlotte without using a mouse, we also have implemented keyboard shortcuts:
 • Alt+A: Enable accessibility features*
 • Alt+Left: Select the previous text element
 • Alt+Right: Select the next text element

*Please note that for security purposes, accessibility features cannot be enabled before user interaction (either through this shortcut or by clicking on our extension icon).

About Us
We originally developed Charlotte for the Tech 4 Good Festival by Engineering Good, Singapore. We believe the web is for everyone, and continue to maintain Charlotte in that spirit.

Privacy
Our extension is configured with the minimum permissions required for it to function properly.
View our privacy policy here: https://www.charlotteweb.io/privacy-policy

Support
Charlotte is still in beta development. Do reach out to us at [email protected] for feedback, or to find out more!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Charlotte Charlotte
ID jkdoomkdcioheppgnmpakinhlgjflnem
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/charlotte/jkdoomkdcioheppgnmpakinhlgjflnem
คำอธิบาย Making the web more accessible for everyone. Provides screen reading, image captioning, high contrast, cursor changes and more!
ขนาดไฟล์ 2.65 MB
จำนวนการติดตั้ง 33
เวอร์ชันปัจจุบัน 0.5.0
อัปเดตครั้งล่าสุด 2021-10-13
วันที่เผยแพร่ 2021-10-13
ผู้พัฒนา charlotteaccessibility
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.charlotteweb.io/
URL หน้านโยบายความเป็นส่วนตัว https://www.charlotteweb.io/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Charlotte",
    "description": "Making the web more accessible for everyone. Provides screen reading, image captioning, high contrast, cursor changes and more!",
    "version": "0.5.0",
    "manifest_version": 3,
    "icons": {
        "16": "assets\/imgs\/charlotte_favicon.png",
        "32": "assets\/imgs\/charlotte_favicon.png",
        "48": "assets\/imgs\/charlotte_favicon.png",
        "128": "assets\/imgs\/charlotte_favicon.png"
    },
    "background": {
        "service_worker": ".\/background.js",
        "type": "module"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+C"
            }
        },
        "toggleAccessibilityFeatures": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Enable or disable accessibility features on the current tab"
        },
        "selectNextElement": {
            "suggested_key": {
                "default": "Alt+Right"
            },
            "description": "Select the next element"
        },
        "selectPrevElement": {
            "suggested_key": {
                "default": "Alt+Left"
            },
            "description": "Select the previous element"
        }
    },
    "action": {
        "default_popup": ".\/popup.html",
        "default_icons": {
            "16": "assets\/imgs\/charlotte_favicon.png",
            "32": "assets\/imgs\/charlotte_favicon.png",
            "48": "assets\/imgs\/charlotte_favicon.png",
            "128": "assets\/imgs\/charlotte_favicon.png"
        }
    },
    "options_page": ".\/pages\/options.html",
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/imgs\/cursors\/*.png",
                "assets\/js\/*.js",
                "assets\/fonts\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}