GitHub AST Viewer

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

Apa itu GitHub AST Viewer?

GitHub AST Viewer adalah ekstensi Chrome yang dikembangkan oleh lukehorvat, dan fitur utamanya adalah "View the abstract syntax tree (AST) of code on GitHub.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi GitHub AST Viewer

Unduh file ekstensi GitHub AST Viewer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama GitHub AST Viewer GitHub AST Viewer
ID kgncjlmmhhmhbiiacajdmpnhplahelkh
URL Resmi https://chrome.google.com/webstore/detail/github-ast-viewer/kgncjlmmhhmhbiiacajdmpnhplahelkh
Deskripsi View the abstract syntax tree (AST) of code on GitHub.
Ukuran File 120 KB
Jumlah Instalasi 96
Versi Saat Ini 1.0.5
Terakhir Diperbarui 2017-03-18
Tanggal Publikasi 2017-03-18
Penilaian 3.50/5 Total 2 Penilaian
Pengembang lukehorvat
Tipe Pembayaran free
Situs Ekstensi https://github.com/lukehorvat/github-ast-viewer
Bahasa yang Didukung 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\/*"
    ]
}