Github Download Button

Adds a download button on Github files

Cos'è Github Download Button?

Github Download Button è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Adds a download button on Github files".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Github Download Button

Scarica i file di estensione Github Download Button 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

                        When you install this extension, a download button will be added to every GitHub file. Downloading files on GitHub it's a pain and this extension makes the whole process easier                    

Informazioni di Base sull'Estensione

Nome Github Download Button Github Download Button
ID jheiohemapejddjdnfnhldcfhmklgmdg
URL Ufficiale https://chromewebstore.google.com/detail/github-download-button/jheiohemapejddjdnfnhldcfhmklgmdg
Descrizione Adds a download button on Github files
Dimensione del File 10.63 KB
Conteggio Installazioni 263
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-12-14
Data di Pubblicazione 2021-12-13
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore Unknown
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Download Button",
    "version": "1.0.0",
    "description": "Adds a download button on Github files",
    "icons": {
        "19": "icon_19.png",
        "48": "icon_48.png",
        "96": "icon_96.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*.github.com\/*",
        "*:\/\/raw.githubusercontent.com\/*"
    ]
}