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" ] } |