Text Macros & LaTeX

Text macros and a LaTeX preset

Text Macros & LaTeX là gì?

Text Macros & LaTeX là một tiện ích mở rộng Chrome được phát triển bởi quelklef, và tính năng chính của nó là "Text macros and a LaTeX preset".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Text Macros & LaTeX

Tải xuống các tệp mở rộng Text Macros & LaTeX dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Text Macros & LaTeX Text Macros & LaTeX
ID jhhepajjmildgenepcmloaadelagfmkd
URL Chính Thức https://chromewebstore.google.com/detail/text-macros-latex/jhhepajjmildgenepcmloaadelagfmkd
Mô tả Text macros and a LaTeX preset
Kích Thước Tệp 46.79 KB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 1.4.0
Cập Nhật Lần Cuối 2021-03-05
Ngày Phát Hành 2019-06-13
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển quelklef
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}