Github Code Outline
Makes code browsing on Github easy by showing outline of code.
Github Code Outline क्या है?
Github Code Outline VJ द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes code browsing on Github easy by showing outline of code."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Github Code Outline एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |