GitHub AST Viewer
View the abstract syntax tree (AST) of code on GitHub.
GitHub AST Viewer क्या है?
GitHub AST Viewer lukehorvat द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View the abstract syntax tree (AST) of code on GitHub."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub AST Viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } |