Old Github UI

GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.

Old Github UI란 무엇입니까?

Old Github UI은(는) Sreenivasan Ramesh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Old Github UI 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Get back the old Github User Interface. This extension moves the new sidebar back to the top, and makes the layout similar to the old user interface.                    

확장 프로그램 기본 정보

이름 Old Github UI Old Github UI
ID dhifdlfedboijpanpblghhhakpnncadb
공식 URL https://chromewebstore.google.com/detail/old-github-ui/dhifdlfedboijpanpblghhhakpnncadb
설명 GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.
파일 크기 13.42 KB
설치 횟수 292
현재 버전 2.3
최근 업데이트 2020-06-29
출시 날짜 2020-06-29
평점 3.83/5 총 6 개의 평점
개발자 Sreenivasan Ramesh
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sreenivasanramesh/old-github-ui
도움말 페이지 URL https://github.com/sreenivasanramesh/old-github-ui
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Old Github UI",
    "version": "2.3",
    "manifest_version": 2,
    "description": "GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.gihub.com\/*"
            ],
            "css": [
                "headers.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "exclude_globs": [
                "https:\/\/github.com\/*\/*\/settings*",
                "https:\/\/github.com\/*\/*\/community*"
            ],
            "css": [
                "repo-content.css"
            ],
            "run_at": "document_start"
        }
    ]
}