Glatex Extension

Compile LaTeX from Google Docs

Τι είναι το Glatex Extension;

Το Glatex Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον sinasehlaver, και η κύρια λειτουργία του είναι "Compile LaTeX from Google Docs".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Glatex Extension

Λήψη αρχείων επέκτασης Glatex Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
            ]
        }
    ]
}