Github Download Button

Adds a download button on Github files

Hvad er Github Download Button?

Github Download Button er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Adds a download button on Github files".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Github Download Button-udvidelses-CRX-fil

Download Github Download Button-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Github Download Button Github Download Button
ID jheiohemapejddjdnfnhldcfhmklgmdg
Officiel URL https://chromewebstore.google.com/detail/github-download-button/jheiohemapejddjdnfnhldcfhmklgmdg
Beskrivelse Adds a download button on Github files
Filstørrelse 10.63 KB
Antal Installationer 263
Nuværende Version 1.0.0
Senest Opdateret 2021-12-14
Udgivelsesdato 2021-12-13
Bedømmelse 3.67/5 Samlet 3 Bedømmelser
Udvikler Unknown
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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\/*"
    ]
}