Text Macros & LaTeX
Text macros and a LaTeX preset
什麼是Text Macros & LaTeX?
Text Macros & LaTeX是由quelklef開發的Chrome擴展程式,該擴展的主要功能是“Text macros and a LaTeX preset”。
擴展截圖
下載Text Macros & LaTeX擴展crx文件
下載Text Macros & LaTeX擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Replace LaTeX commands such as \forall and \exists with their respective unicode symbols. Also allows for custom macros. NOTE: I would recommend using a LaTeX input method instead of this extension. Input methods will work in all applications, not just Chrome. Because input methods are such a good alternative, development on this extension is stopped.
擴展基本資訊
名稱 | Text Macros & LaTeX |
ID | jhhepajjmildgenepcmloaadelagfmkd |
官方網址 | https://chromewebstore.google.com/detail/text-macros-latex/jhhepajjmildgenepcmloaadelagfmkd |
簡介 | Text macros and a LaTeX preset |
檔案大小 | 46.79 KB |
安裝次數 | 14 |
目前版本 | 1.4.0 |
更新時間 | 2021-03-05 |
上架時間 | 2019-06-13 |
評分 | 5.00/5 共 1 次評分 |
開發者 | quelklef |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Text Macros & LaTeX", "version": "1.4.0", "description": "Text macros and a LaTeX preset", "permissions": [ "storage" ], "background": { "scripts": [ "onInstalled.js", "iconController.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [], "js": [ "macros.js", "presets.js", "runtime.js" ] } ], "options_page": "options.html", "browser_action": { "default_icon": "icon-128x.png", "default_title": "Macros and LaTeX" }, "icons": { "128": "icon-128x.png" } } |