GitHub Downloader

Download single files from GitHub

Was ist GitHub Downloader?

GitHub Downloader ist eine Chrome-Erweiterung, die von Titus entwickelt wurde, und ihr Hauptmerkmal ist "Download single files from GitHub".

Erweiterungsscreenshots

screenshot

GitHub Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie GitHub Downloader-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

                        Chrome extension that can be used to download single files from github.com repositories.

If you find this useful and want to give me a beer. You can donate a couple of bucks via PayPal https://www.paypal.com/donate?hosted_button_id=UZHWVVR5YSZ5L                    

Grundlegende Informationen zur Erweiterung

Name GitHub Downloader GitHub Downloader
ID jplmabjbdhggnlhndkdfciacklbjcfel
Offizielle URL https://chromewebstore.google.com/detail/github-downloader/jplmabjbdhggnlhndkdfciacklbjcfel
Beschreibung Download single files from GitHub
Dateigröße 140 KB
Installationsanzahl 12,400
Aktuelle Version 3.0
Letztes Update 2022-09-26
Veröffentlichungsdatum 2020-06-24
Bewertung 3.96/5 Insgesamt 23 Bewertungen
Entwickler Titus
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Downloader",
    "description": "Download single files from GitHub",
    "version": "3.0",
    "permissions": [
        "downloads"
    ],
    "host_permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/raw.githubusercontent.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "GitHub Downloader"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 3,
    "author": "Turbatu Dumitru Titus "
}