Github Code Outline

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

What is Github Code Outline?

Github Code Outline is a Chrome extension developed by VJ, and its main feature is "Makes code browsing on Github easy by showing outline of code.".

Extension Screenshots

screenshot

Download Github Code Outline Extension CRX File

Download Github Code Outline extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Github Code Outline Github Code Outline
ID cbmbcfbceckimjbpojfcganogblfocjf
Official URL https://chromewebstore.google.com/detail/github-code-outline/cbmbcfbceckimjbpojfcganogblfocjf
Description Makes code browsing on Github easy by showing outline of code.
File Size 464 KB
Installation Count 70
Current Version 3.0
Last Updated 2020-03-21
Publish Date 2020-03-21
Rating 2.00/5 Total 1 Ratings
Developer VJ
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}