GitHub Repository Size

Automatically adds repository size to GitHub's repository summary

Was ist GitHub Repository Size?

GitHub Repository Size ist eine Chrome-Erweiterung, die von https://harshjv.com entwickelt wurde, und ihr Hauptmerkmal ist "Automatically adds repository size to GitHub's repository summary".

Erweiterungsscreenshots

screenshot
screenshot

GitHub Repository Size-Erweiterungs-CRX-Datei herunterladen

Laden Sie GitHub Repository Size-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name GitHub Repository Size GitHub Repository Size
ID apnjnioapinblneaedefcnopcjepgkci
Offizielle URL https://chromewebstore.google.com/detail/github-repository-size/apnjnioapinblneaedefcnopcjepgkci
Beschreibung Automatically adds repository size to GitHub's repository summary
Dateigröße 12.9 KB
Installationsanzahl 20,000
Aktuelle Version 0.6.0
Letztes Update 2020-06-26
Veröffentlichungsdatum 2020-06-26
Bewertung 4.39/5 Insgesamt 80 Bewertungen
Entwickler https://harshjv.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/harshjv/github-repo-size
Hilfeseite URL https://github.com/harshjv/github-repo-size/issues
Unterstützte Sprachen 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"
    }
}