Text Macros & LaTeX

Text macros and a LaTeX preset

Text Macros & LaTeXとは何ですか?

Text Macros & LaTeXはquelklefによって開発されたChromeの拡張機能で、その主な機能は「Text macros and a LaTeX preset」です。

拡張機能のスクリーンショット

screenshot

Text Macros & LaTeX拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}