GitHub AST Viewer
View the abstract syntax tree (AST) of code on GitHub.
¿Qué es GitHub AST Viewer?
GitHub AST Viewer es una extensión de Chrome desarrollada por lukehorvat, y su función principal es "View the abstract syntax tree (AST) of code on GitHub.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión GitHub AST Viewer
Descarga archivos de extensión GitHub AST Viewer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.)
Información Básica de la Extensión
Nombre | |
ID | kgncjlmmhhmhbiiacajdmpnhplahelkh |
URL Oficial | https://chrome.google.com/webstore/detail/github-ast-viewer/kgncjlmmhhmhbiiacajdmpnhplahelkh |
Descripción | View the abstract syntax tree (AST) of code on GitHub. |
Tamaño del Archivo | 120 KB |
Cantidad de Instalaciones | 96 |
Versión Actual | 1.0.5 |
Última Actualización | 2017-03-18 |
Fecha de Publicación | 2017-03-18 |
Calificación | 3.50/5 Total de 2 Calificaciones |
Desarrollador | lukehorvat |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/lukehorvat/github-ast-viewer |
Idiomas Soportados | 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\/*" ] } |