Github Vanced

An ultimate chrome extension to customize and streamline your GitHub experience!

Github Vanced란 무엇입니까?

Github Vanced은(는) bhumijgupta에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An ultimate chrome extension to customize and streamline your GitHub experience!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        An ultimate chrome extension to customize and streamline your GitHub experience with a lifetime promise of no ads and no data collection
Features -
1. Website wide dark mode
2. Colors contribution chart to avoid distraction
3. Easy toggle switches to enable and disable features                    

확장 프로그램 기본 정보

이름 Github Vanced Github Vanced
ID apidmenkobkfjiffjmapgjdapmpaneck
공식 URL https://chrome.google.com/webstore/detail/github-vanced/apidmenkobkfjiffjmapgjdapmpaneck
설명 An ultimate chrome extension to customize and streamline your GitHub experience!
파일 크기 57.45 KB
설치 횟수 45
현재 버전 0.8.4
최근 업데이트 2019-07-12
출시 날짜 2019-07-12
평점 5.00/5 총 1 개의 평점
개발자 bhumijgupta
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/bhumijgupta/Github-vanced
도움말 페이지 URL https://github.com/bhumijgupta/Github-vanced/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Vanced",
    "description": "An ultimate chrome extension to customize and streamline your GitHub experience!",
    "version": "0.8.4",
    "author": "Bhumij Gupta",
    "icons": {
        "16": "assets\/icon_16.png",
        "32": "assets\/icon_32.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "colorify.js",
                "darktheme.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "popup.html",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}