Show in File Manager

Shows last downloaded file in default file manager

Что такое Show in File Manager?

Show in File Manager - это расширение Chrome, разработанное selim.ober, и его основная функция - "Shows last downloaded file in default file manager".

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

screenshot

Скачать файл CRX расширения Show in File Manager

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

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

                        Provides a handy shortcut (Cmd+Shift+Y for Mac or Ctrl+Shift+Y for Windows) for opening default file manager on the system and preselect your last downloaded file.

It's there to save you from using your mouse to go the downloaded file at the bottom of your Chrome window, open the menu and click Show in File Manager.                    

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

Название Show in File Manager Show in File Manager
ID ajchknafbabadjpbdkcnglcakmiknlge
Официальный URL https://chromewebstore.google.com/detail/show-in-file-manager/ajchknafbabadjpbdkcnglcakmiknlge
Описание Shows last downloaded file in default file manager
Размер файла 8.02 KB
Количество установок 757
Текущая Версия 1.0
Последнее Обновление 2022-02-24
Дата публикации 2016-09-27
Рейтинг 3.00/5 Всего 2 оценок
Разработчик selim.ober
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Show in File Manager",
    "description": "Shows last downloaded file in default file manager",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "downloads"
    ],
    "background": {
        "scripts": [
            "script.js"
        ],
        "persistent": false
    },
    "commands": {
        "show-last-download": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Show last downloaded file in default file manager"
        }
    }
}