Mathflowy: TeX equations for Workflowy

Render TeX / LaTeX math equations in Workflowy with MathJax.

Τι είναι το Mathflowy: TeX equations for Workflowy;

Το Mathflowy: TeX equations for Workflowy είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον wonglkd, και η κύρια λειτουργία του είναι "Render TeX / LaTeX math equations in Workflowy with MathJax.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Mathflowy: TeX equations for Workflowy

Λήψη αρχείων επέκτασης Mathflowy: TeX equations for Workflowy σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Mathflowy: TeX equations for Workflowy Mathflowy: TeX equations for Workflowy
ID enkondafgdaafikjlehpnjebnknfgfle
Επίσημο URL https://chromewebstore.google.com/detail/mathflowy-tex-equations-f/enkondafgdaafikjlehpnjebnknfgfle
Περιγραφή Render TeX / LaTeX math equations in Workflowy with MathJax.
Μέγεθος Αρχείου 110 KB
Αριθμός Εγκαταστάσεων 446
Τρέχουσα Έκδοση 0.1.5
Τελευταία Ενημέρωση 2017-04-23
Ημερομηνία Δημοσίευσης 2017-04-23
Αξιολόγηση 3.58/5 Συνολικά 12 Αξιολογήσεις
Προγραμματιστής wonglkd
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/wonglkd/mathflowy
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/wonglkd/mathflowy/issues
Υποστηριζόμενες Γλώσσες 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
    }
}