GitHub Downloader

Download single files from GitHub

Qu'est-ce que GitHub Downloader ?

GitHub Downloader est une extension Chrome développée par Titus, et sa fonction principale est "Download single files from GitHub".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension GitHub Downloader

Téléchargez les fichiers d'extension GitHub Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom GitHub Downloader GitHub Downloader
ID jplmabjbdhggnlhndkdfciacklbjcfel
URL Officiel https://chromewebstore.google.com/detail/github-downloader/jplmabjbdhggnlhndkdfciacklbjcfel
Description Download single files from GitHub
Taille du Fichier 140 KB
Nombre d'Installations 12,400
Version Actuelle 3.0
Dernière Mise à Jour 2022-09-26
Date de Publication 2020-06-24
Évaluation 3.96/5 Total 23 Évaluations
Développeur Titus
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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 "
}