Text Macros & LaTeX
Text macros and a LaTeX preset
Что такое Text Macros & LaTeX?
Text Macros & LaTeX - это расширение Chrome, разработанное quelklef, и его основная функция - "Text macros and a LaTeX preset".
Снимки экрана расширения
Скачать файл CRX расширения Text Macros & LaTeX
Скачайте файлы расширений 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"
}
} | |