GitHub AST Viewer
View the abstract syntax tree (AST) of code on GitHub.
Τι είναι το GitHub AST Viewer;
Το GitHub AST Viewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lukehorvat, και η κύρια λειτουργία του είναι "View the abstract syntax tree (AST) of code on GitHub.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GitHub AST Viewer
Λήψη αρχείων επέκτασης 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\/*" ] } |