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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } |