Mathflowy: TeX equations for Workflowy

Render TeX / LaTeX math equations in Workflowy with MathJax.

O que é Mathflowy: TeX equations for Workflowy?

Mathflowy: TeX equations for Workflowy é uma extensão do Chrome desenvolvida por wonglkd, e sua principal característica é "Render TeX / LaTeX math equations in Workflowy with MathJax.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Mathflowy: TeX equations for Workflowy

Baixe arquivos de extensão Mathflowy: TeX equations for Workflowy 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

                        Use this extension to render LaTeX in Workflowy (inline and display). 

Include inline math by surrounding it with \( and \) (e.g., \(2 + 2 = 5\)). (Single $ works as well.)

Include display math by surrounding it with \[ and \] (e.g., \[2 + 2 = 5\]). ($$ can be used as delimiters as well.)

Forked from thricedotted's original extension (https://github.com/thricedotted/mathflowy). Functionality is the same, just that it's been updated to work with the current version of Workflowy.

GitHub: https://github.com/wonglkd/mathflowy                    

Informações Básicas da Extensão

Nome Mathflowy: TeX equations for Workflowy Mathflowy: TeX equations for Workflowy
ID enkondafgdaafikjlehpnjebnknfgfle
URL Oficial https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle
Descrição Render TeX / LaTeX math equations in Workflowy with MathJax.
Tamanho do Arquivo 110 KB
Contagem de Instalações 446
Versão Atual 0.1.5
Última Atualização 2017-04-23
Data de Publicação 2017-04-23
Classificação 3.58/5 Total de 12 Avaliações
Desenvolvedor wonglkd
Tipo de Pagamento free
Site da Extensão https://github.com/wonglkd/mathflowy
URL da Página de Ajuda https://github.com/wonglkd/mathflowy/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mathflowy: TeX equations for Workflowy",
    "short_name": "Mathflowy",
    "version": "0.1.5",
    "manifest_version": 2,
    "description": "Render TeX \/ LaTeX math equations in Workflowy with MathJax.",
    "icons": {
        "128": "mathflowy-128.png",
        "48": "mathflowy-48.png",
        "16": "mathflowy-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/workflowy.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "render.js"
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}