MathJax Plugin for Github

Renders Github equations with MathJax

Τι είναι το MathJax Plugin for Github;

Το MathJax Plugin for Github είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Or Sharir, και η κύρια λειτουργία του είναι "Renders Github equations with MathJax".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης MathJax Plugin for Github

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

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

                        Extension add support for LaTeX equations in GitHub repositories, rendering them with an open source [MathJax](http://mathjax.org/) library.

Right-Click on equation to show MathJax's context menu with additional options, e.g. "Scale All Math..." to instantly scale all equations on a page, "TeX commands" to see the source TeX equation etc.

Extension is published under [New BSD License](https://github.com/orsharir/github-mathjax/blob/master/LICENSE.md) with the source code available [here](https://github.com/orsharir/github-mathjax). This extension is based on the __wonderful__ [wiki_mathjax](https://github.com/bgromov/wiki-mathjax) extension by [Boris Gromov](https://github.com/bgromov), and its license is included as part of LICENSE.md in this repository.

For bug reports and feature requests, please use [Issue tracker](https://github.com/orsharir/github-mathjax/issues).                    

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

Όνομα MathJax Plugin for Github MathJax Plugin for Github
ID ioemnmodlmafdkllaclgeombjnmnbima
Επίσημο URL https://chromewebstore.google.com/detail/mathjax-plugin-for-github/ioemnmodlmafdkllaclgeombjnmnbima
Περιγραφή Renders Github equations with MathJax
Μέγεθος Αρχείου 796 KB
Αριθμός Εγκαταστάσεων 23,294
Τρέχουσα Έκδοση 0.2.4
Τελευταία Ενημέρωση 2019-03-08
Ημερομηνία Δημοσίευσης 2019-03-08
Αξιολόγηση 4.38/5 Συνολικά 47 Αξιολογήσεις
Προγραμματιστής Or Sharir
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/orsharir/github-mathjax
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/orsharir/github-mathjax/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MathJax Plugin for Github",
    "description": "Renders Github equations with MathJax",
    "version": "0.2.4",
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/gist.github.com\/*"
    ],
    "web_accessible_resources": [
        "mathjax_config.js",
        "MathJax\/*",
        "jquery-min-1.7.2.js",
        "dynamic_math.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "jquery-min-1.7.2.js",
                "jquery.include.pack-1.1.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}