Github Code Outline

Makes code browsing on Github easy by showing outline of code.

Was ist Github Code Outline?

Github Code Outline ist eine Chrome-Erweiterung, die von VJ entwickelt wurde, und ihr Hauptmerkmal ist "Makes code browsing on Github easy by showing outline of code.".

Erweiterungsscreenshots

screenshot

Github Code Outline-Erweiterungs-CRX-Datei herunterladen

Laden Sie Github Code Outline-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Github Code Outline Github Code Outline
ID cbmbcfbceckimjbpojfcganogblfocjf
Offizielle URL https://chromewebstore.google.com/detail/github-code-outline/cbmbcfbceckimjbpojfcganogblfocjf
Beschreibung Makes code browsing on Github easy by showing outline of code.
Dateigröße 464 KB
Installationsanzahl 70
Aktuelle Version 3.0
Letztes Update 2020-03-21
Veröffentlichungsdatum 2020-03-21
Bewertung 2.00/5 Insgesamt 1 Bewertungen
Entwickler VJ
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}