Math2Text

Converta expressões matemáticas escritas em MathML em um texto alternativo, legível em um leitor de tela.

Math2Text란 무엇입니까?

Math2Text은(는) albinoszeszjunior에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Converta expressões matemáticas escritas em MathML em um texto alternativo, legível em um leitor de tela."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        O Math2Text, uma tecnologia assistiva baseada em software, proveniente da junção de softwares de código aberto e códigos autorais, com o objetivo de auxiliar na interpretação de símbolos matemáticos para estudantes com baixa ou nenhuma visão, bem como professores no desenvolvimento de materiais acessíveis.                    

확장 프로그램 기본 정보

이름 Math2Text Math2Text
ID dkjbpklcekbnhfbgebghbbhoabfhajlg
공식 URL https://chromewebstore.google.com/detail/math2text/dkjbpklcekbnhfbgebghbbhoabfhajlg
설명 Converta expressões matemáticas escritas em MathML em um texto alternativo, legível em um leitor de tela.
파일 크기 24.69 KB
설치 횟수 129
현재 버전 1.0
최근 업데이트 2021-04-20
출시 날짜 2021-04-18
평점 5.00/5 총 1 개의 평점
개발자 albinoszeszjunior
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://inclusaoemfoco.com.br/math2text
도움말 페이지 URL https://inclusaoemfoco.com.br/math2text/contato
지원되는 언어 pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Math2Text",
    "version": "1.0",
    "description": "Converta express\u00f5es matem\u00e1ticas escritas em MathML em um texto alternativo, leg\u00edvel em um leitor de tela.",
    "permissions": [
        "activeTab",
        "",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "images\/math2text.png"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "convertMath.js",
                "persistence.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.jpg",
        "images\/*.png"
    ],
    "manifest_version": 2
}