Github Code Outline
Makes code browsing on Github easy by showing outline of code.
Github Code Outlineคืออะไร?
Github Code Outline เป็นส่วนขยายของ Chrome ที่พัฒนาโดย VJ และคุณลักษณะหลักของมันคือ "Makes code browsing on Github easy by showing outline of code."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Code Outline
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" ] } |