Chrome Download Helper

This extension helps you managing your donwloads.

Cos'è Chrome Download Helper?

Chrome Download Helper è un'estensione di Chrome sviluppata da Obstc0rp, e la sua funzione principale è "This extension helps you managing your donwloads.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Chrome Download Helper

Scarica i file di estensione Chrome Download Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Chrome Download Helper Chrome Download Helper
ID knaddinhblejecfcgajdpbebicfpejem
URL Ufficiale https://chromewebstore.google.com/detail/chrome-download-helper/knaddinhblejecfcgajdpbebicfpejem
Descrizione This extension helps you managing your donwloads.
Dimensione del File 686 KB
Conteggio Installazioni 20,000
Versione Corrente 1.2.2
Ultimo Aggiornamento 2015-04-09
Data di Pubblicazione 2015-04-09
Valutazione 2.83/5 Totale 24 Valutazioni
Sviluppatore Obstc0rp
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Obstc0rp/Chrome-Download-Helper
Lingue Supportate 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"
        }
    }
}