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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان 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" } } |