GitHub AST Viewer

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

O que é GitHub AST Viewer?

GitHub AST Viewer é uma extensão do Chrome desenvolvida por lukehorvat, e sua principal característica é "View the abstract syntax tree (AST) of code on GitHub.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão GitHub AST Viewer

Baixe arquivos de extensão GitHub AST Viewer 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

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

Informações Básicas da Extensão

Nome GitHub AST Viewer GitHub AST Viewer
ID kgncjlmmhhmhbiiacajdmpnhplahelkh
URL Oficial https://chrome.google.com/webstore/detail/github-ast-viewer/kgncjlmmhhmhbiiacajdmpnhplahelkh
Descrição View the abstract syntax tree (AST) of code on GitHub.
Tamanho do Arquivo 120 KB
Contagem de Instalações 96
Versão Atual 1.0.5
Última Atualização 2017-03-18
Data de Publicação 2017-03-18
Classificação 3.50/5 Total de 2 Avaliações
Desenvolvedor lukehorvat
Tipo de Pagamento free
Site da Extensão https://github.com/lukehorvat/github-ast-viewer
Idiomas Suportados 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\/*"
    ]
}