Github files download

Extension to download Githup single files without downloading the whole repo

Qu'est-ce que Github files download ?

Github files download est une extension Chrome développée par Unknown, et sa fonction principale est "Extension to download Githup single files without downloading the whole repo".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Github files download

Téléchargez les fichiers d'extension Github files download 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

                        Extension to download Github single files without downloading the whole repository , by right clicking the Github file link you will see an option to download the file.                    

Informations de Base sur l'Extension

Nom Github files download Github files download
ID lhfgdmnajofjhhokaobpkkgfjogknfbo
URL Officiel https://chromewebstore.google.com/detail/github-files-download/lhfgdmnajofjhhokaobpkkgfjogknfbo
Description Extension to download Githup single files without downloading the whole repo
Taille du Fichier 828 KB
Nombre d'Installations 47
Version Actuelle 0.0.1
Dernière Mise à Jour 2020-03-25
Date de Publication 2020-03-25
Développeur Unknown
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/github.com\/*",
        "https:\/\/github.com\/*",
        "contextMenus",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "css": [],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}