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 |
公式URL | 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 |
Eメール | [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" ] } |