Glatex Extension
Compile LaTeX from Google Docs
什麼是Glatex Extension?
Glatex Extension是由sinasehlaver開發的Chrome擴展程式,該擴展的主要功能是“Compile LaTeX from Google Docs”。
擴展截圖
下載Glatex Extension擴展crx文件
下載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 |
ID | flbiiboegohonbaphidjfemmbeoknpjf |
官方網址 | 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" ] } ] } |