Chrome Download Helper

This extension helps you managing your donwloads.

Was ist Chrome Download Helper?

Chrome Download Helper ist eine Chrome-Erweiterung, die von Obstc0rp entwickelt wurde, und ihr Hauptmerkmal ist "This extension helps you managing your donwloads.".

Erweiterungsscreenshots

screenshot

Chrome Download Helper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chrome Download Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Chrome Download Helper Chrome Download Helper
ID knaddinhblejecfcgajdpbebicfpejem
Offizielle URL https://chromewebstore.google.com/detail/chrome-download-helper/knaddinhblejecfcgajdpbebicfpejem
Beschreibung This extension helps you managing your donwloads.
Dateigröße 686 KB
Installationsanzahl 20,000
Aktuelle Version 1.2.2
Letztes Update 2015-04-09
Veröffentlichungsdatum 2015-04-09
Bewertung 2.83/5 Insgesamt 24 Bewertungen
Entwickler Obstc0rp
Zahlungsart free
Erweiterungswebsite https://github.com/Obstc0rp/Chrome-Download-Helper
Unterstützte Sprachen 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"
        }
    }
}