GitHub folder download&zip
It works on a github subfolder page - zips all the direct descendant files in that subfolder
O que é GitHub folder download&zip?
GitHub folder download&zip é uma extensão do Chrome desenvolvida por rite-chrome-extensions, e sua principal característica é "It works on a github subfolder page - zips all the direct descendant files in that subfolder".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GitHub folder download&zip
Baixe arquivos de extensão GitHub folder download&zip no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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)
Informações Básicas da Extensão
Nome | GitHub folder download&zip |
ID | khnljpeameaeeadfbckchhhnchndfjnj |
URL Oficial | https://chromewebstore.google.com/detail/github-folder-downloadzip/khnljpeameaeeadfbckchhhnchndfjnj |
Descrição | It works on a github subfolder page - zips all the direct descendant files in that subfolder |
Tamanho do Arquivo | 64.88 KB |
Contagem de Instalações | 119 |
Versão Atual | 0.13 |
Última Atualização | 2023-05-16 |
Data de Publicação | 2021-11-25 |
Desenvolvedor | rite-chrome-extensions |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |