Chrome Download Helper

This extension helps you managing your donwloads.

Что такое Chrome Download Helper?

Chrome Download Helper - это расширение Chrome, разработанное Obstc0rp, и его основная функция - "This extension helps you managing your donwloads.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Chrome Download Helper

Скачайте файлы расширений Chrome Download Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Chrome Download Helper Chrome Download Helper
ID knaddinhblejecfcgajdpbebicfpejem
Официальный URL https://chromewebstore.google.com/detail/chrome-download-helper/knaddinhblejecfcgajdpbebicfpejem
Описание This extension helps you managing your donwloads.
Размер файла 686 KB
Количество установок 20,000
Текущая Версия 1.2.2
Последнее Обновление 2015-04-09
Дата публикации 2015-04-09
Рейтинг 2.83/5 Всего 24 оценок
Разработчик Obstc0rp
Тип оплаты free
Официальный сайт расширения https://github.com/Obstc0rp/Chrome-Download-Helper
Поддерживаемые языки 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"
        }
    }
}