GitHub Repository Size

Automatically adds repository size to GitHub's repository summary

GitHub Repository Size란 무엇입니까?

GitHub Repository Size은(는) https://harshjv.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically adds repository size to GitHub's repository summary"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

GitHub Repository Size 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ## Now supports directory size

## Supports private repositories via Github token

Follow these instructions to enable this extension on private repositories: https://github.com/harshjv/github-repo-size#private-repository

For more details, visit https://github.com/harshjv/github-repo-size                    

확장 프로그램 기본 정보

이름 GitHub Repository Size GitHub Repository Size
ID apnjnioapinblneaedefcnopcjepgkci
공식 URL https://chromewebstore.google.com/detail/github-repository-size/apnjnioapinblneaedefcnopcjepgkci
설명 Automatically adds repository size to GitHub's repository summary
파일 크기 12.9 KB
설치 횟수 20,000
현재 버전 0.6.0
최근 업데이트 2020-06-26
출시 날짜 2020-06-26
평점 4.39/5 총 80 개의 평점
개발자 https://harshjv.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/harshjv/github-repo-size
도움말 페이지 URL https://github.com/harshjv/github-repo-size/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Repository Size",
    "version": "0.6.0",
    "manifest_version": 2,
    "description": "Automatically adds repository size to GitHub's repository summary",
    "homepage_url": "https:\/\/github.com\/harshjv\/github-repo-size",
    "author": "Harsh Vakharia",
    "icons": {
        "16": "icons\/ghrs16.png",
        "48": "icons\/ghrs48.png",
        "128": "icons\/ghrs128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/ghrs16.png",
            "48": "icons\/ghrs48.png",
            "128": "icons\/ghrs128.png"
        },
        "default_title": "GitHub Repository Size: Click to set\/remove access token"
    }
}