Github file download

Add a download button for Github and gist

Co je Github file download?

Github file download je rozšíření Chrome vyvinuté litefeel, a jeho hlavní funkcí je „Add a download button for Github and gist“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Github file download

Stáhněte si soubory rozšíření Github file download ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Add a download button for Github and gist                    

Základní Informace o Rozšíření

Název Github file download Github file download
ID mmpjhbgoanojaigomkmoppeogccmjhko
Oficiální URL https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko
Popis Add a download button for Github and gist
Velikost souboru 50.94 KB
Počet instalací 387
Aktuální Verze 1.5
Poslední Aktualizace 2015-11-20
Datum Vydání 2015-11-20
Hodnocení 3.67/5 Celkem 3 Hodnocení
Vývojář litefeel
Typ Platby free
Webové stránky Rozšíření https://github.com/lite3/github-file-download
URL Stránky Nápovědy https://github.com/lite3/github-file-download
Podporované Jazyky 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\/"
}