GitHub AST Viewer

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

Wat is GitHub AST Viewer?

GitHub AST Viewer is een Chrome-extensie ontwikkeld door lukehorvat, en de belangrijkste functie is "View the abstract syntax tree (AST) of code on GitHub.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie GitHub AST Viewer

Download GitHub AST Viewer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam GitHub AST Viewer GitHub AST Viewer
ID kgncjlmmhhmhbiiacajdmpnhplahelkh
Officiële URL https://chrome.google.com/webstore/detail/github-ast-viewer/kgncjlmmhhmhbiiacajdmpnhplahelkh
Beschrijving View the abstract syntax tree (AST) of code on GitHub.
Bestandsgrootte 120 KB
Aantal Installaties 96
Huidige Versie 1.0.5
Laatst Bijgewerkt 2017-03-18
Publicatiedatum 2017-03-18
Beoordeling 3.50/5 Totaal 2 Beoordelingen
Ontwikkelaar lukehorvat
Betalingswijze free
Extensiewebsite https://github.com/lukehorvat/github-ast-viewer
Ondersteunde Talen 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\/*"
    ]
}