Glatex Extension

Compile LaTeX from Google Docs

Qu'est-ce que Glatex Extension ?

Glatex Extension est une extension Chrome développée par sinasehlaver, et sa fonction principale est "Compile LaTeX from Google Docs".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Glatex Extension

Téléchargez les fichiers d'extension Glatex Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Glatex Extension Glatex Extension
ID flbiiboegohonbaphidjfemmbeoknpjf
URL Officiel https://chromewebstore.google.com/detail/glatex-extension/flbiiboegohonbaphidjfemmbeoknpjf
Description Compile LaTeX from Google Docs
Taille du Fichier 137 KB
Nombre d'Installations 86
Version Actuelle 1.40
Dernière Mise à Jour 2020-05-22
Date de Publication 2020-05-22
Développeur sinasehlaver
Type de Paiement free
Site Web de l'Extension https://glatex.ceng.metu.edu.tr/
Langues Prises en Charge 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"
            ]
        }
    ]
}