Holberton File Downloader

The fast and convenient way to create Holberton School project files.

O que é Holberton File Downloader?

Holberton File Downloader é uma extensão do Chrome desenvolvida por keysmusician, e sua principal característica é "The fast and convenient way to create Holberton School project files.".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Holberton File Downloader

Baixe arquivos de extensão Holberton File Downloader 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

                        Holberton File Downloader is a convenience for Holberton School students to quickly create project files. In a few clicks, students can easily create all project files including pre-filled main files and save them to a directory of their choice. Let Holberton File Downloader spare you the tedium of manual file creation and get back to the real problem solving!

To download files, navigate to any Holberton School project page, simply click the extension icon, then "Download" (or "Download as..." to choose the download location).

v1.3:
- Migrated to Manifest V3

v1.2:
- "Find files" was removed; Files will be found automatically when the extension loads
- Bug fixes                    

Informações Básicas da Extensão

Nome Holberton File Downloader Holberton File Downloader
ID lknkfkffdokfodgfmcblomakemcbgomp
URL Oficial https://chromewebstore.google.com/detail/holberton-file-downloader/lknkfkffdokfodgfmcblomakemcbgomp
Descrição The fast and convenient way to create Holberton School project files.
Tamanho do Arquivo 41.18 KB
Contagem de Instalações 41
Versão Atual 1.3
Última Atualização 2023-08-31
Data de Publicação 2022-01-18
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor keysmusician
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/keysmusician/holberton-file-downloader-browser-extension
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Holberton File Downloader",
    "description": "The fast and convenient way to create Holberton School project files.",
    "version": "1.3",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "minimum_chrome_version": "92",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/intranet.hbtn.io\/*"
            ],
            "js": [
                "lib\/browser-polyfill.min.js",
                "content_script.js"
            ]
        }
    ],
    "action": {
        "default_icon": "Holberton File Downloader.png",
        "default_popup": "popup.html",
        "default_title": "Holberton File Downloader"
    },
    "permissions": [
        "activeTab",
        "downloads",
        "offscreen"
    ]
}