GitHub AST Viewer

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

Что такое GitHub AST Viewer?

GitHub AST Viewer - это расширение Chrome, разработанное lukehorvat, и его основная функция - "View the abstract syntax tree (AST) of code on GitHub.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения GitHub AST Viewer

Скачайте файлы расширений GitHub AST Viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название GitHub AST Viewer GitHub AST Viewer
ID kgncjlmmhhmhbiiacajdmpnhplahelkh
Официальный URL https://chrome.google.com/webstore/detail/github-ast-viewer/kgncjlmmhhmhbiiacajdmpnhplahelkh
Описание View the abstract syntax tree (AST) of code on GitHub.
Размер файла 120 KB
Количество установок 96
Текущая Версия 1.0.5
Последнее Обновление 2017-03-18
Дата публикации 2017-03-18
Рейтинг 3.50/5 Всего 2 оценок
Разработчик lukehorvat
Тип оплаты free
Официальный сайт расширения https://github.com/lukehorvat/github-ast-viewer
Поддерживаемые языки 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\/*"
    ]
}