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文件

下载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"
    }
}