GitHub AST Viewer

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

Vad är GitHub AST Viewer?

GitHub AST Viewer är en Chrome-tillägg utvecklad av lukehorvat, och dess huvudfunktion är "View the abstract syntax tree (AST) of code on GitHub.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner GitHub AST Viewer-förlängningens CRX-fil

Ladda ner GitHub AST Viewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn GitHub AST Viewer GitHub AST Viewer
ID kgncjlmmhhmhbiiacajdmpnhplahelkh
Officiell webbadress https://chrome.google.com/webstore/detail/github-ast-viewer/kgncjlmmhhmhbiiacajdmpnhplahelkh
Beskrivning View the abstract syntax tree (AST) of code on GitHub.
Filstorlek 120 KB
Antal Installationer 96
Aktuell Version 1.0.5
Senast Uppdaterad 2017-03-18
Publiceringsdatum 2017-03-18
Betyg 3.50/5 Totalt 2 Betyg
Utvecklare lukehorvat
Betalningssätt free
Tilläggswebbplats https://github.com/lukehorvat/github-ast-viewer
Stödda Språk 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\/*"
    ]
}