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. 扩展基本信息
| 名称 | |
| ID | jhhepajjmildgenepcmloaadelagfmkd |
| 官方URL | 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"
}
} | |