Text Macros & LaTeX

Text macros and a LaTeX preset

Text Macros & LaTeXคืออะไร?

Text Macros & LaTeX เป็นส่วนขยายของ Chrome ที่พัฒนาโดย quelklef และคุณลักษณะหลักของมันคือ "Text macros and a LaTeX preset"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Text Macros & LaTeX 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"
    }
}