GitHub AST Viewer

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

Cos'è GitHub AST Viewer?

GitHub AST Viewer è un'estensione di Chrome sviluppata da lukehorvat, e la sua funzione principale è "View the abstract syntax tree (AST) of code on GitHub.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione GitHub AST Viewer

Scarica i file di estensione GitHub AST Viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.)                    

Informazioni di Base sull'Estensione

Nome GitHub AST Viewer GitHub AST Viewer
ID kgncjlmmhhmhbiiacajdmpnhplahelkh
URL Ufficiale https://chrome.google.com/webstore/detail/github-ast-viewer/kgncjlmmhhmhbiiacajdmpnhplahelkh
Descrizione View the abstract syntax tree (AST) of code on GitHub.
Dimensione del File 120 KB
Conteggio Installazioni 96
Versione Corrente 1.0.5
Ultimo Aggiornamento 2017-03-18
Data di Pubblicazione 2017-03-18
Valutazione 3.50/5 Totale 2 Valutazioni
Sviluppatore lukehorvat
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/lukehorvat/github-ast-viewer
Lingue Supportate 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\/*"
    ]
}