GitHub Repository Size

Automatically adds repository size to GitHub's repository summary

GitHub Repository Sizeคืออะไร?

GitHub Repository Size เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://harshjv.com และคุณลักษณะหลักของมันคือ "Automatically adds repository size to GitHub's repository summary"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Repository Size

ดาวน์โหลดไฟล์ส่วนขยาย GitHub Repository Size ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ## 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"
    }
}