GitHub folder download&zip

It works on a github subfolder page - zips all the direct descendant files in that subfolder

Co je GitHub folder download&zip?

GitHub folder download&zip je rozšíření Chrome vyvinuté rite-chrome-extensions, a jeho hlavní funkcí je „It works on a github subfolder page - zips all the direct descendant files in that subfolder“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření GitHub folder download&zip

Stáhněte si soubory rozšíření GitHub folder download&zip ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Github web ui allows downloading and zipping a whole repository but it does not allow doing that inside subfolders.

This plugin extends the github webpage UI so that it is possible to download and zip a subfolder.
It works by looking for all the links in that subfolder, fetching raw files from that links and compressing them into a single zip file. 

Because all this can be done in the context of the logged in user, this can work seamlessly without needing to set up any authorization keys.

Known limitations:
- binary files are currently incorrectly zipped, because text() is read from fetch response
- only files from the top files are added to the zip (the files from subfolders are not)                    

Základní Informace o Rozšíření

Název GitHub folder download&zip GitHub folder download&zip
ID khnljpeameaeeadfbckchhhnchndfjnj
Oficiální URL https://chromewebstore.google.com/detail/github-folder-downloadzip/khnljpeameaeeadfbckchhhnchndfjnj
Popis It works on a github subfolder page - zips all the direct descendant files in that subfolder
Velikost souboru 64.88 KB
Počet instalací 119
Aktuální Verze 0.13
Poslední Aktualizace 2023-05-16
Datum Vydání 2021-11-25
Vývojář rite-chrome-extensions
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub folder download&zip",
    "description": "It works on a github subfolder page - zips all the direct descendant files in that subfolder",
    "version": "0.13",
    "browser_action": {
        "default_title": "GitHub folder download&zip",
        "default_icon": "download-zip.png",
        "default_popup": "downloadpopup.html"
    },
    "permissions": [
        "activeTab"
    ]
}