Github file download

Add a download button for Github and gist

Co to jest Github file download?

Github file download to rozszerzenie Chrome opracowane przez litefeel, a jego główną funkcją jest „Add a download button for Github and gist”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Github file download

Pobierz pliki rozszerzeń Github file download w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Add a download button for Github and gist                    

Podstawowe informacje o rozszerzeniu

Nazwa Github file download Github file download
ID mmpjhbgoanojaigomkmoppeogccmjhko
Oficjalny URL https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko
Opis Add a download button for Github and gist
Rozmiar pliku 50.94 KB
Liczba instalacji 387
Aktualna Wersja 1.5
Ostatnia Aktualizacja 2015-11-20
Data Publikacji 2015-11-20
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper litefeel
Typ Płatności free
Strona Rozszerzenia https://github.com/lite3/github-file-download
Adres URL Strony Pomocy https://github.com/lite3/github-file-download
Obsługiwane Języki 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\/"
}