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\/*"
    ]
}