GitHub Code Folding

Enable code folding when viewing files in GitHub.

GitHub Code Folding란 무엇입니까?

GitHub Code Folding은(는) noam3127에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enable code folding when viewing files in GitHub."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

GitHub Code Folding 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Code folding - the ability to selectively hide and display sections of a code - is an invaluable feature in many text editors and IDEs. Now, developers can utilize that same style code-folding while poring over source code on the web in GitHub. Works for any type of indentation, spaces or tabs.


--- CHANGELOG ---
v0.3.3
- handle multi-level nested blocks

v0.3.2
- don't expand previously collapsed inner block when expanding outer block
- styling fix that prevented copying code

v0.3.1
- remove host permission 

v0.3.0
- migrate manifest to v3
- update permissions
- fix styling

v0.2.0
- fix to use CSS selectors from updated github markup 
- run on bbgithub

v0.1.1
- fix missing css file

v0.1.0 
- remove jQuery dependency
- use event page instead of permanent background                    

확장 프로그램 기본 정보

이름 GitHub Code Folding GitHub Code Folding
ID lefcpjbffalgdcdgidjdnmabfenecjdf
공식 URL https://chromewebstore.google.com/detail/github-code-folding/lefcpjbffalgdcdgidjdnmabfenecjdf
설명 Enable code folding when viewing files in GitHub.
파일 크기 1.06 MB
설치 횟수 3,328
현재 버전 0.3.3
최근 업데이트 2022-07-14
출시 날짜 2019-04-10
평점 5.00/5 총 16 개의 평점
개발자 noam3127
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/noam3127/github-code-folding
도움말 페이지 URL https://github.com/noam3127/github-code-folding/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Code Folding",
    "version": "0.3.3",
    "description": "Enable code folding when viewing files in GitHub.",
    "homepage_url": "https:\/\/github.com\/noam3127\/github-code-folding",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "author": "Noam Lustiger",
    "short_name": "Github Code Folding",
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/github.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "icons": {
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "css": [
                "style.css"
            ]
        }
    ]
}