TeX All the Things

An extension which lets you enable LaTeX on any website

O que é TeX All the Things?

TeX All the Things é uma extensão do Chrome desenvolvida por emichael, e sua principal característica é "An extension which lets you enable LaTeX on any website".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão TeX All the Things

Baixe arquivos de extensão TeX All the Things no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Typesets any LaTeX found on webpages using MathJax (http://www.mathjax.org/).

§ HOW TO USE §
Inline math can be typed with:
    $y = 3x + 2$
or
    [;y = 3x + 2;]

Display mode math can be typed with:
    $$\sum_{i = 0}^n {n \choose i} x^{i} y^{n-i}$$
or
    \[\sum_{i = 0}^n {n \choose i} x^{i} y^{n-i}\]

Use the options menu to customize which domains the extension typesets and even set your own custom delimiters for inline and display math.

Click the extension's toolbar button to disable/re-enable typesetting on every domain.


§ HELP MAKE THIS BETTER §
This Chrome Extension is open source. See a problem or want to make an improvement? Report bugs and send me pull requests on GitHub!

https://github.com/emichael/texthings                    

Informações Básicas da Extensão

Nome TeX All the Things TeX All the Things
ID cbimabofgmfdkicghcadidpemeenbffn
URL Oficial https://chromewebstore.google.com/detail/tex-all-the-things/cbimabofgmfdkicghcadidpemeenbffn
Descrição An extension which lets you enable LaTeX on any website
Tamanho do Arquivo 70.04 KB
Contagem de Instalações 40,000
Versão Atual 1.1.5
Última Atualização 2021-11-29
Data de Publicação 2018-07-07
Classificação 3.99/5 Total de 91 Avaliações
Desenvolvedor emichael
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/emichael/texthings
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TeX All the Things",
    "short_name": "TeX Things",
    "author": "emichael",
    "description": "An extension which lets you enable LaTeX on any website",
    "version": "1.1.5",
    "icons": {
        "128": "img\/icon128.png",
        "48": "img\/icon48.png"
    },
    "browser_action": {
        "default_icon": {
            "38": "img\/browser38.png",
            "19": "img\/browser19.png"
        },
        "default_title": "TeX All the Things"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "js\/texify.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/options.js"
        ],
        "persistent": true
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "web_accessible_resources": [
        "js\/pageScript.js"
    ],
    "options_page": "options.html"
}