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