Glatex Extension

Compile LaTeX from Google Docs

Glatex Extension란 무엇입니까?

Glatex Extension은(는) sinasehlaver에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Compile LaTeX from Google Docs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Glatex Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Glatex Extension Glatex Extension
ID flbiiboegohonbaphidjfemmbeoknpjf
공식 URL https://chromewebstore.google.com/detail/glatex-extension/flbiiboegohonbaphidjfemmbeoknpjf
설명 Compile LaTeX from Google Docs
파일 크기 137 KB
설치 횟수 86
현재 버전 1.40
최근 업데이트 2020-05-22
출시 날짜 2020-05-22
개발자 sinasehlaver
결제 유형 free
확장 프로그램 웹 사이트 https://glatex.ceng.metu.edu.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"
            ]
        }
    ]
}