Github/Gitlab/Bitbucket File Downloader

Chrome extension for Github/Gitlab/Bitbucket to download single file (with size indicator) in a repo

O que é Github/Gitlab/Bitbucket File Downloader?

Github/Gitlab/Bitbucket File Downloader é uma extensão do Chrome desenvolvida por antoinebou13, e sua principal característica é "Chrome extension for Github/Gitlab/Bitbucket to download single file (with size indicator) in a repo".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Github/Gitlab/Bitbucket File Downloader

Baixe arquivos de extensão Github/Gitlab/Bitbucket 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

                        This extension add a individual download button and the size of the file to each file to a github or gitlab or bitbucket repo. 

For the directory they link you to the other file inside the directory.

For more info: https://github.com/antoinebou13/GithubSimpleFileDownloader                    

Informações Básicas da Extensão

Nome Github/Gitlab/Bitbucket File Downloader Github/Gitlab/Bitbucket File Downloader
ID beaapccjfanmdliofdcpbjmaklgojgbb
URL Oficial https://chrome.google.com/webstore/detail/githubgitlabbitbucket-fil/beaapccjfanmdliofdcpbjmaklgojgbb
Descrição Chrome extension for Github/Gitlab/Bitbucket to download single file (with size indicator) in a repo
Tamanho do Arquivo 912 KB
Contagem de Instalações 84
Versão Atual 1.1.1
Última Atualização 2019-04-27
Data de Publicação 2019-04-27
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor antoinebou13
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/antoinebou13/GithubSimpleFileDownloader
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Antoine Boucher ",
    "name": "Github\/Gitlab\/Bitbucket File Downloader",
    "short_name": "Git File Downloader",
    "version": "1.1.1",
    "default_locale": "en",
    "description": "Chrome extension for Github\/Gitlab\/Bitbucket to download single file (with size indicator) in a repo",
    "icons": {
        "16": "src\/assets\/icons\/github_icon16.png",
        "32": "src\/assets\/icons\/github_icon32.png",
        "96": "src\/assets\/icons\/github_icon96.png",
        "120": "src\/assets\/icons\/github_icon120.png",
        "128": "src\/assets\/icons\/github_icon128.png",
        "144": "src\/assets\/icons\/github_icon144.png"
    },
    "permissions": [
        "contentSettings"
    ],
    "web_accessible_resources": [
        "src\/assets\/icons\/*.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gitlab.com\/*",
                "https:\/\/bitbucket.org\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/inject\/inject_github.js"
            ]
        },
        {
            "matches": [
                "https:\/\/gitlab.com\/*"
            ],
            "js": [
                "src\/inject\/inject_gitlab.js"
            ]
        },
        {
            "matches": [
                "https:\/\/bitbucket.org\/*"
            ],
            "js": [
                "src\/inject\/inject_bitbucket.js"
            ]
        }
    ]
}