Github Code Outline

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

O que é Github Code Outline?

Github Code Outline é uma extensão do Chrome desenvolvida por VJ, e sua principal característica é "Makes code browsing on Github easy by showing outline of code.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Github Code Outline

Baixe arquivos de extensão Github Code Outline no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Github Code Outline Github Code Outline
ID cbmbcfbceckimjbpojfcganogblfocjf
URL Oficial https://chromewebstore.google.com/detail/github-code-outline/cbmbcfbceckimjbpojfcganogblfocjf
Descrição Makes code browsing on Github easy by showing outline of code.
Tamanho do Arquivo 464 KB
Contagem de Instalações 70
Versão Atual 3.0
Última Atualização 2020-03-21
Data de Publicação 2020-03-21
Classificação 2.00/5 Total de 1 Avaliações
Desenvolvedor VJ
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}