Ascii Math Unicode
A tool for rendering selected ascii math as unicode
Ascii Math Unicode란 무엇입니까?
Ascii Math Unicode은(는) https://hafaio.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tool for rendering selected ascii math as unicode"입니다.
확장 프로그램 스크린샷
Ascii Math Unicode 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Convert AsciiMath into unicode! Highlight any AsciiMath expression, and and convert it into the corresponding unicode by clicking on the extension. Allows you to turn an expression like "sum_(i=1)^n i^3=((n(n+1))/2)^2" into "∑ᵢ₌₁ⁿ i³=(ⁿ⁽ⁿ⁺¹⁾⁄₂)²". This expression can still be copied and pasted and will work in emails or messages. You can also convert text with the customizable shortcut `Ctrl+Shift+K` or by using a context menu.
확장 프로그램 기본 정보
이름 | Ascii Math Unicode |
ID | llehdcbaonklonjlfgeggamnebgggoab |
공식 URL | https://chromewebstore.google.com/detail/ascii-math-unicode/llehdcbaonklonjlfgeggamnebgggoab |
설명 | A tool for rendering selected ascii math as unicode |
파일 크기 | 374 KB |
설치 횟수 | 86 |
현재 버전 | 2.0.1 |
최근 업데이트 | 2023-07-23 |
출시 날짜 | 2021-06-30 |
개발자 | https://hafaio.github.io |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/hafaio/asciimath-unicode/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ascii Math Unicode", "description": "A tool for rendering selected ascii math as unicode", "version": "2.0.1", "options_page": "out\/index.html", "permissions": [ "activeTab", "scripting", "contextMenus", "storage" ], "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'" }, "background": { "service_worker": "service_worker.js" }, "action": { "default_title": "Convert selected ascii math" }, "commands": { "ascii-math-unicode": { "suggested_key": { "default": "Ctrl+Shift+K" }, "description": "Convert current selection from ascii math to unicode" } }, "icons": { "16": "\/images\/am16.png", "32": "\/images\/am32.png", "48": "\/images\/am48.png", "128": "\/images\/am128.png" }, "manifest_version": 3 } |