Github Code Outline
Makes code browsing on Github easy by showing outline of code.
Qu'est-ce que Github Code Outline ?
Github Code Outline est une extension Chrome développée par VJ, et sa fonction principale est "Makes code browsing on Github easy by showing outline of code.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Github Code Outline
Téléchargez les fichiers d'extension Github Code Outline au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Github Code Outline |
ID | cbmbcfbceckimjbpojfcganogblfocjf |
URL Officiel | https://chromewebstore.google.com/detail/github-code-outline/cbmbcfbceckimjbpojfcganogblfocjf |
Description | Makes code browsing on Github easy by showing outline of code. |
Taille du Fichier | 464 KB |
Nombre d'Installations | 70 |
Version Actuelle | 3.0 |
Dernière Mise à Jour | 2020-03-21 |
Date de Publication | 2020-03-21 |
Évaluation | 2.00/5 Total 1 Évaluations |
Développeur | VJ |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |