Chrome Download Helper

This extension helps you managing your donwloads.

Co je Chrome Download Helper?

Chrome Download Helper je rozšíření Chrome vyvinuté Obstc0rp, a jeho hlavní funkcí je „This extension helps you managing your donwloads.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Chrome Download Helper

Stáhněte si soubory rozšíření Chrome Download Helper 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í

                        This extension helps you managing your donwloads.
If enabled any download gets it own subdirectory inside the download directory. This subdirectory gets the name of the domain where the download comes from. If enabled you can use a whitelist. Then only those downloads get a subdirectory which domain is listed.

Additionally you can use defined shortkeys to open the last download (default Alt+L) and open the default download directory (default Alt+O).
You can change this settings in the Chrome extension menu at the very bottom.                    

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

Název Chrome Download Helper Chrome Download Helper
ID knaddinhblejecfcgajdpbebicfpejem
Oficiální URL https://chromewebstore.google.com/detail/chrome-download-helper/knaddinhblejecfcgajdpbebicfpejem
Popis This extension helps you managing your donwloads.
Velikost souboru 686 KB
Počet instalací 20,000
Aktuální Verze 1.2.2
Poslední Aktualizace 2015-04-09
Datum Vydání 2015-04-09
Hodnocení 2.83/5 Celkem 24 Hodnocení
Vývojář Obstc0rp
Typ Platby free
Webové stránky Rozšíření https://github.com/Obstc0rp/Chrome-Download-Helper
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Download Helper",
    "description": "This extension helps you managing your donwloads.",
    "version": "1.2.2",
    "permissions": [
        "downloads",
        "downloads.open"
    ],
    "icons": {
        "128": ".\/assets\/images\/icon.png"
    },
    "background": {
        "scripts": [
            "assets\/js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": ".\/assets\/images\/icon.png",
        "default_popup": ".\/html\/popup.html"
    },
    "options_page": ".\/html\/options.html",
    "commands": {
        "open-download-dir": {
            "suggested_key": {
                "default": "Alt+O"
            },
            "description": "Open Download Directory"
        },
        "open-last-downlaod": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "Open Last Download"
        }
    }
}