Github Download Button

Adds a download button on Github files

Wat is Github Download Button?

Github Download Button is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Adds a download button on Github files".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Github Download Button

Download Github Download Button-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Github Download Button Github Download Button
ID jheiohemapejddjdnfnhldcfhmklgmdg
Officiële URL https://chromewebstore.google.com/detail/github-download-button/jheiohemapejddjdnfnhldcfhmklgmdg
Beschrijving Adds a download button on Github files
Bestandsgrootte 10.63 KB
Aantal Installaties 263
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-12-14
Publicatiedatum 2021-12-13
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar Unknown
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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\/*"
    ]
}