Websites Accessibility

accessibility tool for every website

Websites Accessibility란 무엇입니까?

Websites Accessibility은(는) RanBuch에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "accessibility tool for every website"입니다.

확장 프로그램 스크린샷

screenshot

Websites Accessibility 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Add accessibility menu to every website!

Features:
* increase text size
* decrease text size
* increase text spacing
* decrease text spacing
* invert colors
* gray hues
* underline links
* hotkeys
* big cursor
* reading guide
* text to speech
* speech to text

For developers who what's to add this to their site:
npm:
https://www.npmjs.com/package/accessibility
github:
https://github.com/ranbuch/accessibility                    

확장 프로그램 기본 정보

이름 Websites Accessibility Websites Accessibility
ID aefndakodjcaapnmofhkmdbkabghakgn
공식 URL https://chromewebstore.google.com/detail/websites-accessibility/aefndakodjcaapnmofhkmdbkabghakgn
설명 accessibility tool for every website
파일 크기 24.44 KB
설치 횟수 312
현재 버전 3.0.96
최근 업데이트 2022-07-23
출시 날짜 2020-04-25
평점 5.00/5 총 2 개의 평점
개발자 RanBuch
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Websites Accessibility",
    "short_name": "accessibility",
    "version": "3.0.96",
    "description": "accessibility tool for every website",
    "manifest_version": 2,
    "background": {
        "page": "background.html"
    },
    "icons": {
        "16": "logo_accessibility_16.png",
        "48": "logo_accessibility_48.png",
        "128": "logo_accessibility_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "logo_accessibility_19.png",
            "38": "logo_accessibility_38.png"
        },
        "default_title": "website accessibility tool",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "accessibility.user.js"
            ],
            "run_at": "document_start"
        }
    ]
}