GitHub AST Viewer

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

GitHub AST Viewer là gì?

GitHub AST Viewer là một tiện ích mở rộng Chrome được phát triển bởi lukehorvat, và tính năng chính của nó là "View the abstract syntax tree (AST) of code on GitHub.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub AST Viewer

Tải xuống các tệp mở rộng GitHub AST Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub AST Viewer GitHub AST Viewer
ID kgncjlmmhhmhbiiacajdmpnhplahelkh
URL Chính Thức https://chrome.google.com/webstore/detail/github-ast-viewer/kgncjlmmhhmhbiiacajdmpnhplahelkh
Mô tả View the abstract syntax tree (AST) of code on GitHub.
Kích Thước Tệp 120 KB
Số Lần Cài Đặt 96
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2017-03-18
Ngày Phát Hành 2017-03-18
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển lukehorvat
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lukehorvat/github-ast-viewer
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}