Glatex Extension

Compile LaTeX from Google Docs

Glatex Extension là gì?

Glatex Extension là một tiện ích mở rộng Chrome được phát triển bởi sinasehlaver, và tính năng chính của nó là "Compile LaTeX from Google Docs".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Glatex Extension

Tải xuống các tệp mở rộng Glatex Extension 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

                        The extension is used for local compilation support for the related Google Add-on that let's users compile LaTeX through Google Docs documents. The extension is the intermediate for the local compilation server script which uses nativeMessaging to communicate with the extension. Extension does not pass any important information with these messages, these messages are only there for "signalling" the nativeMessaging host script (local compilation server script) to run. The mentioned script must be downloaded manually by user, there is no script included in the extension package. The extension is not interactive, it automatically checks whether the user is using the mentioned add-on to compile LaTeX and executes the mentioned script. In addition to that,  the extension provides a dark theme functionality.                    

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

Tên Glatex Extension Glatex Extension
ID flbiiboegohonbaphidjfemmbeoknpjf
URL Chính Thức https://chromewebstore.google.com/detail/glatex-extension/flbiiboegohonbaphidjfemmbeoknpjf
Mô tả Compile LaTeX from Google Docs
Kích Thước Tệp 137 KB
Số Lần Cài Đặt 86
Phiên Bản Hiện Tại 1.40
Cập Nhật Lần Cuối 2020-05-22
Ngày Phát Hành 2020-05-22
Nhà Phát Triển sinasehlaver
Loại Thanh Toán free
Trang Web Mở Rộng https://glatex.ceng.metu.edu.tr/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Glatex Extension",
    "version": "1.40",
    "manifest_version": 2,
    "description": "Compile LaTeX from Google Docs",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Open dark theme dialog",
        "default_popup": "popup.html"
    },
    "permissions": [
        "nativeMessaging",
        "https:\/\/docs.google.com\/*"
    ],
    "icons": {
        "128": "logo_off.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}