GitHub AST Viewer

View the abstract syntax tree (AST) of code on GitHub.

Co je GitHub AST Viewer?

GitHub AST Viewer je rozšíření Chrome vyvinuté lukehorvat, a jeho hlavní funkcí je „View the abstract syntax tree (AST) of code on GitHub.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření GitHub AST Viewer

Stáhněte si soubory rozšíření GitHub AST Viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        The extension adds an "AST" button to the GitHub page of any file in a repository. Clicking it will display the abstract syntax tree representation of the code.

Currently only JavaScript code is supported, but more language support to come in the future!

(The extension is not officially affiliated with GitHub in any way. Use at own risk.)                    

Základní Informace o Rozšíření

Název GitHub AST Viewer GitHub AST Viewer
ID kgncjlmmhhmhbiiacajdmpnhplahelkh
Oficiální URL https://chrome.google.com/webstore/detail/github-ast-viewer/kgncjlmmhhmhbiiacajdmpnhplahelkh
Popis View the abstract syntax tree (AST) of code on GitHub.
Velikost souboru 120 KB
Počet instalací 96
Aktuální Verze 1.0.5
Poslední Aktualizace 2017-03-18
Datum Vydání 2017-03-18
Hodnocení 3.50/5 Celkem 2 Hodnocení
Vývojář lukehorvat
Typ Platby free
Webové stránky Rozšíření https://github.com/lukehorvat/github-ast-viewer
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub AST Viewer",
    "version": "1.0.5",
    "description": "View the abstract syntax tree (AST) of code on GitHub.",
    "author": "Luke Horvat",
    "homepage_url": "https:\/\/github.com\/lukehorvat\/github-ast-viewer",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/*.githubusercontent.com\/*"
    ]
}