Github file download

Add a download button for Github and gist

Cos'è Github file download?

Github file download è un'estensione di Chrome sviluppata da litefeel, e la sua funzione principale è "Add a download button for Github and gist".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Github file download

Scarica i file di estensione Github file download in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Add a download button for Github and gist                    

Informazioni di Base sull'Estensione

Nome Github file download Github file download
ID mmpjhbgoanojaigomkmoppeogccmjhko
URL Ufficiale https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko
Descrizione Add a download button for Github and gist
Dimensione del File 50.94 KB
Conteggio Installazioni 387
Versione Corrente 1.5
Ultimo Aggiornamento 2015-11-20
Data di Pubblicazione 2015-11-20
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore litefeel
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/lite3/github-file-download
URL della Pagina di Aiuto https://github.com/lite3/github-file-download
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github file download",
    "description": "Add a download button for Github and gist",
    "version": "1.5",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/github.com\/",
        "https:\/\/gist.github.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "download-button.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "offline_enabled": true,
    "homepage_url": "https:\/\/github.com\/lite3\/github-file-download\/"
}