GitHub AST Viewer

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

Qu'est-ce que GitHub AST Viewer ?

GitHub AST Viewer est une extension Chrome développée par lukehorvat, et sa fonction principale est "View the abstract syntax tree (AST) of code on GitHub.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension GitHub AST Viewer

Téléchargez les fichiers d'extension GitHub AST Viewer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom GitHub AST Viewer GitHub AST Viewer
ID kgncjlmmhhmhbiiacajdmpnhplahelkh
URL Officiel https://chrome.google.com/webstore/detail/github-ast-viewer/kgncjlmmhhmhbiiacajdmpnhplahelkh
Description View the abstract syntax tree (AST) of code on GitHub.
Taille du Fichier 120 KB
Nombre d'Installations 96
Version Actuelle 1.0.5
Dernière Mise à Jour 2017-03-18
Date de Publication 2017-03-18
Évaluation 3.50/5 Total 2 Évaluations
Développeur lukehorvat
Type de Paiement free
Site Web de l'Extension https://github.com/lukehorvat/github-ast-viewer
Langues Prises en Charge 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\/*"
    ]
}