GitHub AST Viewer

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

Hvad er GitHub AST Viewer?

GitHub AST Viewer er en Chrome-udvidelse udviklet af lukehorvat, og dens hovedfunktion er "View the abstract syntax tree (AST) of code on GitHub.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download GitHub AST Viewer-udvidelses-CRX-fil

Download GitHub AST Viewer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn GitHub AST Viewer GitHub AST Viewer
ID kgncjlmmhhmhbiiacajdmpnhplahelkh
Officiel URL https://chrome.google.com/webstore/detail/github-ast-viewer/kgncjlmmhhmhbiiacajdmpnhplahelkh
Beskrivelse View the abstract syntax tree (AST) of code on GitHub.
Filstørrelse 120 KB
Antal Installationer 96
Nuværende Version 1.0.5
Senest Opdateret 2017-03-18
Udgivelsesdato 2017-03-18
Bedømmelse 3.50/5 Samlet 2 Bedømmelser
Udvikler lukehorvat
Betalingsmetode free
Udvidelseswebsted https://github.com/lukehorvat/github-ast-viewer
Understøttede Sprog 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\/*"
    ]
}