GitHub Repository Size

Automatically adds repository size to GitHub's repository summary

Co je GitHub Repository Size?

GitHub Repository Size je rozšíření Chrome vyvinuté https://harshjv.com, a jeho hlavní funkcí je „Automatically adds repository size to GitHub's repository summary“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření GitHub Repository Size

Stáhněte si soubory rozšíření GitHub Repository Size ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název GitHub Repository Size GitHub Repository Size
ID apnjnioapinblneaedefcnopcjepgkci
Oficiální URL https://chromewebstore.google.com/detail/github-repository-size/apnjnioapinblneaedefcnopcjepgkci
Popis Automatically adds repository size to GitHub's repository summary
Velikost souboru 12.9 KB
Počet instalací 20,000
Aktuální Verze 0.6.0
Poslední Aktualizace 2020-06-26
Datum Vydání 2020-06-26
Hodnocení 4.39/5 Celkem 80 Hodnocení
Vývojář https://harshjv.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/harshjv/github-repo-size
URL Stránky Nápovědy https://github.com/harshjv/github-repo-size/issues
Podporované Jazyky 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"
    }
}