TeX Math Here

Use the TeX markup language to take math here, there, or just about anywhere that images are supported.

什麼是TeX Math Here?

TeX Math Here是由tex-math-here開發的Chrome擴展程式,該擴展的主要功能是“Use the TeX markup language to take math here, there, or just about anywhere that images are supported.”。

擴展截圖

screenshot

下載TeX Math Here擴展crx文件

下載TeX Math Here擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension aims to overcome the platform dependencies of other TeX/LaTeX web extensions by rendering formulae as images that can be used wherever PNG images are supported. The generated image is injected with useful metadata (namely, the TeX code for screen reader compatibility) then automatically copied to the clipboard for pasting anywhere that images (or their source attributes) are supported.

In Google Docs and Slides, double-double clicking an existing TeX Math Here creation will copy the TeX code to the popup for its next instance.

*Keyboard Shortcut To Launch
Windows: Ctrl+Shift+Y
Linux: Ctrl+Shift+U
Mac: Command+Shift+Y
ChromeOS: Ctrl+Shift+U


v0.7 Changelog:
 - Modified the list of available fonts, losing Comic Sans and Verdana, but gaining compatibility (through open source versions) with Bookman, Euler, Garamond, New Century Schoolbook, Palatino, STIX 2, Times New Roman, and Utopia
 - Added support for full 24-bit color
 - Added support for pulling code from TeX Math Here creations in GMail
 - Eliminated usage of a third party image renderer                    

擴展基本資訊

名稱 TeX Math Here TeX Math Here
ID gopfokpflndblbooehdbffnnjmnegeph
官方網址 https://chromewebstore.google.com/detail/tex-math-here/gopfokpflndblbooehdbffnnjmnegeph
簡介 Use the TeX markup language to take math here, there, or just about anywhere that images are supported.
檔案大小 114 KB
安裝次數 1,552
目前版本 0.7.11
更新時間 2020-03-08
上架時間 2020-03-08
評分 5.00/5 共 1 次評分
開發者 tex-math-here
付費類型 free
擴展官網 http://www.mathaddons.com
說明頁面URL https://github.com/mathaddons/tex-math-here/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TeX Math Here",
    "version": "0.7.11",
    "description": "Use the TeX markup language to take math here, there, or just about anywhere that images are supported.",
    "icons": {
        "128": "images\/texhere\/texhere.128.png",
        "48": "images\/texhere\/texhere.48.png",
        "32": "images\/texhere\/texhere.32.png"
    },
    "background": {
        "scripts": [
            "latex_transport.js"
        ]
    },
    "permissions": [
        "clipboardWrite"
    ],
    "browser_action": {
        "default_icon": {
            "128": "images\/texhere\/texhere.128.png"
        },
        "default_title": "TeX Math Here",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/docs.google.com\/document\/*",
                "*:\/\/docs.google.com\/presentation\/*"
            ],
            "js": [
                "dblclick_edit.js"
            ]
        },
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "dblclick_gmail_edit.js"
            ]
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "linux": "Ctrl+Shift+U",
                "mac": "Command+Shift+Y",
                "chromeos": "Ctrl+Shift+U"
            }
        }
    }
}