Github files download

Extension to download Githup single files without downloading the whole repo

O que é Github files download?

Github files download é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Extension to download Githup single files without downloading the whole repo".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Github files download

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

                        Extension to download Github single files without downloading the whole repository , by right clicking the Github file link you will see an option to download the file.                    

Informações Básicas da Extensão

Nome Github files download Github files download
ID lhfgdmnajofjhhokaobpkkgfjogknfbo
URL Oficial https://chromewebstore.google.com/detail/github-files-download/lhfgdmnajofjhhokaobpkkgfjogknfbo
Descrição Extension to download Githup single files without downloading the whole repo
Tamanho do Arquivo 828 KB
Contagem de Instalações 47
Versão Atual 0.0.1
Última Atualização 2020-03-25
Data de Publicação 2020-03-25
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/github.com\/*",
        "https:\/\/github.com\/*",
        "contextMenus",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "css": [],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}