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文件
下載Ascii Math Unicode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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 } |