Developer's Download Helper

Download files and folders from GitHub or GitLab via context menu.

O que é Developer's Download Helper?

Developer's Download Helper é uma extensão do Chrome desenvolvida por https://lezram.github.io/developers-download-helper-webext, e sua principal característica é "Download files and folders from GitHub or GitLab via context menu.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Developer's Download Helper

Baixe arquivos de extensão Developer's Download Helper 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

                        This is an open source developer tool to make it easier to get files from code sharing platforms.
Use the right click context menu to easily download files.
Also self-hosted/enterprise instances can be configured in the options.                    

Informações Básicas da Extensão

Nome Developer's Download Helper Developer's Download Helper
ID apchbjkblfhmkohghpnhidldebmpmjnn
URL Oficial https://chromewebstore.google.com/detail/developers-download-helpe/apchbjkblfhmkohghpnhidldebmpmjnn
Descrição Download files and folders from GitHub or GitLab via context menu.
Tamanho do Arquivo 156 KB
Contagem de Instalações 1,579
Versão Atual 0.3.0
Última Atualização 2021-06-03
Data de Publicação 2020-05-15
Classificação 4.60/5 Total de 5 Avaliações
Desenvolvedor https://lezram.github.io/developers-download-helper-webext
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/lezram/developers-download-helper-webext
URL da Página de Ajuda https://github.com/lezram/developers-download-helper-webext/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Developer's Download Helper",
    "short_name": "DeDoHe",
    "version": "0.3.0",
    "description": "Download files and folders from GitHub or GitLab via context menu.",
    "homepage_url": "https:\/\/github.com\/lezram\/developers-download-helper-webext",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon-48.png",
        "default_title": "Developer's Download Helper"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "downloads",
        "storage",
        "notifications",
        "https:\/\/*.github.com\/*",
        "https:\/\/*.githubusercontent.com\/*",
        "https:\/\/gitlab.com\/*"
    ],
    "optional_permissions": [
        ""
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    }
}