GitHub AST Viewer

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

Co to jest GitHub AST Viewer?

GitHub AST Viewer to rozszerzenie Chrome opracowane przez lukehorvat, a jego główną funkcją jest „View the abstract syntax tree (AST) of code on GitHub.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia GitHub AST Viewer

Pobierz pliki rozszerzeń GitHub AST Viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa GitHub AST Viewer GitHub AST Viewer
ID kgncjlmmhhmhbiiacajdmpnhplahelkh
Oficjalny URL https://chrome.google.com/webstore/detail/github-ast-viewer/kgncjlmmhhmhbiiacajdmpnhplahelkh
Opis View the abstract syntax tree (AST) of code on GitHub.
Rozmiar pliku 120 KB
Liczba instalacji 96
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2017-03-18
Data Publikacji 2017-03-18
Ocena 3.50/5 Łącznie 2 Oceny
Deweloper lukehorvat
Typ Płatności free
Strona Rozszerzenia https://github.com/lukehorvat/github-ast-viewer
Obsługiwane Języki 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\/*"
    ]
}