Download to Temp Folder

Allows users to download files to a temporary folder, such as Downloads\Temp, rather than the Downloads folder.

Что такое Download to Temp Folder?

Download to Temp Folder - это расширение Chrome, разработанное Elad Shamir, и его основная функция - "Allows users to download files to a temporary folder, such as Downloads\Temp, rather than the Downloads folder.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Download to Temp Folder

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

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

                        This extension allows users to download files to a temporary folder, such as Downloads\Temp, rather than the Downloads folder.

Once a download is initiated, a popup appears; press OK to save the download in the Temp folder or Cancel to save the download in the default Downloads folder.

The extension is fully customizable and also supports the application of advanced rules to manage where downloaded files will be saved automatically.                    

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

Название Download to Temp Folder Download to Temp Folder
ID cmgdgmohnilgoblgjmnklajoedgpenan
Официальный URL https://chromewebstore.google.com/detail/download-to-temp-folder/cmgdgmohnilgoblgjmnklajoedgpenan
Описание Allows users to download files to a temporary folder, such as Downloads\Temp, rather than the Downloads folder.
Размер файла 22.65 KB
Количество установок 690
Текущая Версия 4.6
Последнее Обновление 2016-01-21
Дата публикации 2016-01-21
Рейтинг 4.55/5 Всего 20 оценок
Разработчик Elad Shamir
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Download to Temp Folder",
    "description": "Allows users to download files to a temporary folder, such as Downloads\\Temp, rather than the Downloads folder.",
    "version": "4.6",
    "background": {
        "scripts": [
            "bg.js"
        ],
        "persistent": false
    },
    "permissions": [
        "downloads",
        "downloads.open"
    ],
    "options_page": "options.html",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Download to Temp Folder",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon128.png"
    }
}