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