GitHub with a cape

Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!

GitHub with a cape란 무엇입니까?

GitHub with a cape은(는) NicoSantangelo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!"입니다.

확장 프로그램 스크린샷

screenshot

GitHub with a cape 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        All options can be turn on and off, it includes:

- Notifications modal
- Resizeable splitted diffs
- Add collapsable diffs
- Show All / Hide All buttons
- Show the current diff name on the sticky header
- Add collapsable commits
- Toggle contributions by clicking the added/deleted stats
- Show outdated diff comments by default
- Highlights the outdated diff icon (the X) on PRs                    

확장 프로그램 기본 정보

이름 GitHub with a cape GitHub with a cape
ID ohkgmmldhbadfleajjafdeahmakbbcpi
공식 URL https://chromewebstore.google.com/detail/github-with-a-cape/ohkgmmldhbadfleajjafdeahmakbbcpi
설명 Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!
파일 크기 31.47 KB
설치 횟수 22
현재 버전 1.4.4
최근 업데이트 2017-02-12
출시 날짜 2017-02-11
평점 5.00/5 총 3 개의 평점
개발자 NicoSantangelo
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github-with-a-cape.nicosantangelo.com/
도움말 페이지 URL https://github.com/NicoSantangelo/github-with-a-cape/issues
개인정보 보호 정책 페이지 URL https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub with a cape",
    "description": "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!",
    "short_name": "Github with a cape",
    "version": "1.4.4",
    "icons": {
        "18": "icons\/18.png",
        "19": "icons\/19.png",
        "38": "icons\/38.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.github.com\/*",
                "http:\/\/www.github.com\/*",
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "configuration.js",
                "notifications.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options\/options.html",
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "notifications.html"
    ]
}