GitHub AST Viewer
View the abstract syntax tree (AST) of code on GitHub.
Was ist GitHub AST Viewer?
GitHub AST Viewer ist eine Chrome-Erweiterung, die von lukehorvat entwickelt wurde, und ihr Hauptmerkmal ist "View the abstract syntax tree (AST) of code on GitHub.".
Erweiterungsscreenshots
GitHub AST Viewer-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub AST Viewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.)
Grundlegende Informationen zur Erweiterung
Name | |
ID | kgncjlmmhhmhbiiacajdmpnhplahelkh |
Offizielle URL | https://chrome.google.com/webstore/detail/github-ast-viewer/kgncjlmmhhmhbiiacajdmpnhplahelkh |
Beschreibung | View the abstract syntax tree (AST) of code on GitHub. |
Dateigröße | 120 KB |
Installationsanzahl | 96 |
Aktuelle Version | 1.0.5 |
Letztes Update | 2017-03-18 |
Veröffentlichungsdatum | 2017-03-18 |
Bewertung | 3.50/5 Insgesamt 2 Bewertungen |
Entwickler | lukehorvat |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/lukehorvat/github-ast-viewer |
Unterstützte Sprachen | 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\/*" ] } |