Text Macros & LaTeX
Text macros and a LaTeX preset
Apa itu Text Macros & LaTeX?
Text Macros & LaTeX adalah ekstensi Chrome yang dikembangkan oleh quelklef, dan fitur utamanya adalah "Text macros and a LaTeX preset".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Text Macros & LaTeX
Unduh file ekstensi Text Macros & LaTeX dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Text Macros & LaTeX |
ID | jhhepajjmildgenepcmloaadelagfmkd |
URL Resmi | https://chromewebstore.google.com/detail/text-macros-latex/jhhepajjmildgenepcmloaadelagfmkd |
Deskripsi | Text macros and a LaTeX preset |
Ukuran File | 46.79 KB |
Jumlah Instalasi | 14 |
Versi Saat Ini | 1.4.0 |
Terakhir Diperbarui | 2021-03-05 |
Tanggal Publikasi | 2019-06-13 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | quelklef |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |