GitHub AST Viewer
View the abstract syntax tree (AST) of code on GitHub.
What is GitHub AST Viewer?
GitHub AST Viewer is a Chrome extension developed by lukehorvat, and its main feature is "View the abstract syntax tree (AST) of code on GitHub.".
Extension Screenshots
Download GitHub AST Viewer Extension CRX File
Download GitHub AST Viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.)
Extension Basic Information
Name | |
ID | kgncjlmmhhmhbiiacajdmpnhplahelkh |
Official URL | https://chrome.google.com/webstore/detail/github-ast-viewer/kgncjlmmhhmhbiiacajdmpnhplahelkh |
Description | View the abstract syntax tree (AST) of code on GitHub. |
File Size | 120 KB |
Installation Count | 96 |
Current Version | 1.0.5 |
Last Updated | 2017-03-18 |
Publish Date | 2017-03-18 |
Rating | 3.50/5 Total 2 Ratings |
Developer | lukehorvat |
Payment Type | free |
Extension Website | https://github.com/lukehorvat/github-ast-viewer |
Supported Languages | 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\/*" ] } |