Github file download

Add a download button for Github and gist

O que é Github file download?

Github file download é uma extensão do Chrome desenvolvida por litefeel, e sua principal característica é "Add a download button for Github and gist".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Github file download

Baixe arquivos de extensão Github file download 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

                        Add a download button for Github and gist                    

Informações Básicas da Extensão

Nome Github file download Github file download
ID mmpjhbgoanojaigomkmoppeogccmjhko
URL Oficial https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko
Descrição Add a download button for Github and gist
Tamanho do Arquivo 50.94 KB
Contagem de Instalações 387
Versão Atual 1.5
Última Atualização 2015-11-20
Data de Publicação 2015-11-20
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor litefeel
Tipo de Pagamento free
Site da Extensão https://github.com/lite3/github-file-download
URL da Página de Ajuda https://github.com/lite3/github-file-download
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github file download",
    "description": "Add a download button for Github and gist",
    "version": "1.5",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/github.com\/",
        "https:\/\/gist.github.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "download-button.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "offline_enabled": true,
    "homepage_url": "https:\/\/github.com\/lite3\/github-file-download\/"
}