GitHub Repository Size

Automatically adds repository size to GitHub's repository summary

Co to jest GitHub Repository Size?

GitHub Repository Size to rozszerzenie Chrome opracowane przez https://harshjv.com, a jego główną funkcją jest „Automatically adds repository size to GitHub's repository summary”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia GitHub Repository Size

Pobierz pliki rozszerzeń GitHub Repository Size w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Repository Size GitHub Repository Size
ID apnjnioapinblneaedefcnopcjepgkci
Oficjalny URL https://chromewebstore.google.com/detail/github-repository-size/apnjnioapinblneaedefcnopcjepgkci
Opis Automatically adds repository size to GitHub's repository summary
Rozmiar pliku 12.9 KB
Liczba instalacji 20,000
Aktualna Wersja 0.6.0
Ostatnia Aktualizacja 2020-06-26
Data Publikacji 2020-06-26
Ocena 4.39/5 Łącznie 80 Oceny
Deweloper https://harshjv.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/harshjv/github-repo-size
Adres URL Strony Pomocy https://github.com/harshjv/github-repo-size/issues
Obsługiwane Języki 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"
    }
}