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