Github Tab Size Manager

Use this extension to view git files with tab size specified

Github Tab Size Manager란 무엇입니까?

Github Tab Size Manager은(는) Namandeep Singh Chugh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use this extension to view git files with tab size specified"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Github Tab Size Manager 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Change tab size (from options menu) while viewing code on github.com or gist.github.com                    

확장 프로그램 기본 정보

이름 Github Tab Size Manager Github Tab Size Manager
ID enjegllgfhbkappebfdbgheefocllglo
공식 URL https://chromewebstore.google.com/detail/github-tab-size-manager/enjegllgfhbkappebfdbgheefocllglo
설명 Use this extension to view git files with tab size specified
파일 크기 506 KB
설치 횟수 17
현재 버전 1.5
최근 업데이트 2017-03-17
출시 날짜 2017-03-17
평점 5.00/5 총 1 개의 평점
개발자 Namandeep Singh Chugh
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Tab Size Manager",
    "version": "1.5",
    "manifest_version": 2,
    "icons": {
        "128": "images\/icon.png"
    },
    "options_page": "options.html",
    "description": "Use this extension to view git files with tab size specified",
    "permissions": [
        "storage",
        "*:\/\/gist.github.com\/*",
        "*:\/\/github.com\/*",
        "tabs",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*",
                "*:\/\/gist.github.com\/*"
            ],
            "js": [
                "js\/jquery-3.1.1.min.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}