GitHub Repository Size

Automatically adds repository size to GitHub's repository summary

GitHub Repository Size là gì?

GitHub Repository Size là một tiện ích mở rộng Chrome được phát triển bởi https://harshjv.com, và tính năng chính của nó là "Automatically adds repository size to GitHub's repository summary".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub Repository Size

Tải xuống các tệp mở rộng GitHub Repository Size dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub Repository Size GitHub Repository Size
ID apnjnioapinblneaedefcnopcjepgkci
URL Chính Thức https://chromewebstore.google.com/detail/github-repository-size/apnjnioapinblneaedefcnopcjepgkci
Mô tả Automatically adds repository size to GitHub's repository summary
Kích Thước Tệp 12.9 KB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 0.6.0
Cập Nhật Lần Cuối 2020-06-26
Ngày Phát Hành 2020-06-26
Đánh Giá 4.39/5 Tổng số 80 Đánh Giá
Nhà Phát Triển https://harshjv.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/harshjv/github-repo-size
URL Trang Trợ Giúp https://github.com/harshjv/github-repo-size/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}