Github Code Outline

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

Github Code Outline란 무엇입니까?

Github Code Outline은(는) VJ에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes code browsing on Github easy by showing outline of code."입니다.

확장 프로그램 스크린샷

screenshot

Github Code Outline 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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