Github Code Outline
Makes code browsing on Github easy by showing outline of code.
什麼是Github Code Outline?
Github Code Outline是由VJ開發的Chrome擴展程式,該擴展的主要功能是“Makes code browsing on Github easy by showing outline of code.”。
擴展截圖
下載Github Code Outline擴展crx文件
下載Github Code Outline擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Github Code Outline |
ID | cbmbcfbceckimjbpojfcganogblfocjf |
官方網址 | https://chromewebstore.google.com/detail/github-code-outline/cbmbcfbceckimjbpojfcganogblfocjf |
簡介 | Makes code browsing on Github easy by showing outline of code. |
檔案大小 | 464 KB |
安裝次數 | 70 |
目前版本 | 3.0 |
更新時間 | 2020-03-21 |
上架時間 | 2020-03-21 |
評分 | 2.00/5 共 1 次評分 |
開發者 | VJ |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } |