Github Code Outline
Makes code browsing on Github easy by showing outline of code.
Github Code Outline là gì?
Github Code Outline là một tiện ích mở rộng Chrome được phát triển bởi VJ, và tính năng chính của nó là "Makes code browsing on Github easy by showing outline of code.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Github Code Outline
Tải xuống các tệp mở rộng Github Code Outline dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension shows an outline of the code being viewed on Github, similar to IDEs like eclipse and Intellij. - Shows all the functions and classes detected in the code file. - Navigates to the function or class when clicked. - Shows the return type of functions. - Shows access modifiers (public, private protected) of functions through icons. - Currently supported programming languages are Java, Javascript and Typescript. - Will add support for Python soon. Click on the extension icon in browser to show the outline view. Click again to hide it. Click on the header to drag the outline view to anywhere on the page.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Github Code Outline |
ID | cbmbcfbceckimjbpojfcganogblfocjf |
URL Chính Thức | https://chromewebstore.google.com/detail/github-code-outline/cbmbcfbceckimjbpojfcganogblfocjf |
Mô tả | Makes code browsing on Github easy by showing outline of code. |
Kích Thước Tệp | 464 KB |
Số Lần Cài Đặt | 70 |
Phiên Bản Hiện Tại | 3.0 |
Cập Nhật Lần Cuối | 2020-03-21 |
Ngày Phát Hành | 2020-03-21 |
Đánh Giá | 2.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | VJ |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Code Outline", "version": "3.0", "description": "Makes code browsing on Github easy by showing outline of code.", "manifest_version": 2, "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "myStyles.css" ], "js": [ "common.js", "content.js" ], "all_frames": true } ], "browser_action": { "default_title": "Github Code Outline", "default_icon": { "48": "images\/icon_48_5.png" } }, "web_accessible_resources": [ "images\/*.png" ] } |