Glatex Extension
Compile LaTeX from Google Docs
Cos'è Glatex Extension?
Glatex Extension è un'estensione di Chrome sviluppata da sinasehlaver, e la sua funzione principale è "Compile LaTeX from Google Docs".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Glatex Extension
Scarica i file di estensione Glatex Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Glatex Extension |
ID | flbiiboegohonbaphidjfemmbeoknpjf |
URL Ufficiale | https://chromewebstore.google.com/detail/glatex-extension/flbiiboegohonbaphidjfemmbeoknpjf |
Descrizione | Compile LaTeX from Google Docs |
Dimensione del File | 137 KB |
Conteggio Installazioni | 86 |
Versione Corrente | 1.40 |
Ultimo Aggiornamento | 2020-05-22 |
Data di Pubblicazione | 2020-05-22 |
Sviluppatore | sinasehlaver |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://glatex.ceng.metu.edu.tr/ |
Lingue Supportate | 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" ] } ] } |