GitHub AST Viewer
View the abstract syntax tree (AST) of code on GitHub.
什麼是GitHub AST Viewer?
GitHub AST Viewer是由lukehorvat開發的Chrome擴展程式,該擴展的主要功能是“View the abstract syntax tree (AST) of code on GitHub.”。
擴展截圖
下載GitHub AST Viewer擴展crx文件
下載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.)
擴展基本資訊
名稱 | |
ID | kgncjlmmhhmhbiiacajdmpnhplahelkh |
官方網址 | 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\/*" ] } |