Github Download Button

Adds a download button on Github files

Vad är Github Download Button?

Github Download Button är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Adds a download button on Github files".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Github Download Button-förlängningens CRX-fil

Ladda ner Github Download Button-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Github Download Button Github Download Button
ID jheiohemapejddjdnfnhldcfhmklgmdg
Officiell webbadress https://chromewebstore.google.com/detail/github-download-button/jheiohemapejddjdnfnhldcfhmklgmdg
Beskrivning Adds a download button on Github files
Filstorlek 10.63 KB
Antal Installationer 263
Aktuell Version 1.0.0
Senast Uppdaterad 2021-12-14
Publiceringsdatum 2021-12-13
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare Unknown
E-post [email protected]
Betalningssätt free
Stödda Språk 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\/*"
    ]
}